aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorNamjae Jeon <namjae.jeon@samsung.com>2021-05-26 16:42:12 +0900
committerNamjae Jeon <namjae.jeon@samsung.com>2021-05-26 18:13:30 +0900
commitc8ed11522b4acbe378687b6388ceffd72e72d736 (patch)
treeec3eada8c7113e7848f0cc80a3ca5ea36dffc215
parentcifsd: braces {} should be used on all arms of this statement (diff)
downloadwireguard-linux-c8ed11522b4acbe378687b6388ceffd72e72d736.tar.xz
wireguard-linux-c8ed11522b4acbe378687b6388ceffd72e72d736.zip
cifsd: spaces preferred around that '/'
Fix "CHECK: paces preferred around that '/' from checkpatch.pl --strict. Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com> Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to '')
-rw-r--r--fs/cifsd/asn1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifsd/asn1.c b/fs/cifsd/asn1.c
index 479a9c1fcbbe..846f4e73abbf 100644
--- a/fs/cifsd/asn1.c
+++ b/fs/cifsd/asn1.c
@@ -65,7 +65,7 @@ static bool asn1_oid_decode(const unsigned char *value, size_t vlen,
unsigned long subid;
vlen += 1;
- if (vlen < 2 || vlen > UINT_MAX/sizeof(unsigned long))
+ if (vlen < 2 || vlen > UINT_MAX / sizeof(unsigned long))
return false;
*oid = kmalloc(vlen * sizeof(unsigned long), GFP_KERNEL);