projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
118917d
)
nfs4: Remove unneeded semicolon
author
Zheng Bin
<zhengbin13@huawei.com>
Fri, 24 Apr 2020 08:17:23 +0000
(16:17 +0800)
committer
Anna Schumaker
<Anna.Schumaker@Netapp.com>
Wed, 27 May 2020 14:08:26 +0000
(10:08 -0400)
Fixes coccicheck warning:
include/linux/nfs4.h:298:2-3: Unneeded semicolon
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
include/linux/nfs4.h
patch
|
blob
|
history
diff --git
a/include/linux/nfs4.h
b/include/linux/nfs4.h
index 82d8fb42209234aa5744967e18440e9324e8413d..4a51db7363a550ec70f956c9f112116d9917f83f 100644
(file)
--- a/
include/linux/nfs4.h
+++ b/
include/linux/nfs4.h
@@
-295,7
+295,7
@@
static inline bool seqid_mutating_err(u32 err)
case NFS4ERR_NOFILEHANDLE:
case NFS4ERR_MOVED:
return false;
- }
;
+ }
return true;
}