diff options
author | Zheng Bin <zhengbin13@huawei.com> | 2020-04-24 16:17:23 +0800 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2020-05-27 10:08:26 -0400 |
commit | d04659db7b8089531ccbee364c52909fe4670408 (patch) | |
tree | 88a95ca0e622d0907eb3b6147c18ebe9a0dcff66 /include/linux/nfs4.h | |
parent | 118917d696dc59fd3e1741012c2f9db2294bed6f (diff) |
nfs4: Remove unneeded semicolon
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>
Diffstat (limited to 'include/linux/nfs4.h')
-rw-r--r-- | include/linux/nfs4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h index 82d8fb422092..4a51db7363a5 100644 --- 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; } |