diff options
author | zhengbin <zhengbin13@huawei.com> | 2019-12-19 17:29:20 +0800 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2019-12-19 17:42:44 -0500 |
commit | fc5fc5d7cc9e0c7d2ca5c751cf5450c6bb635e57 (patch) | |
tree | b20b0d18feb7865ff5d273d3d0a71dbe8640087c /fs/nfsd | |
parent | 09a80f2aef06b7c86143f5c14efd3485e0d2c139 (diff) |
nfsd4: Remove unneeded semicolon
Fixes coccicheck warning:
fs/nfsd/nfs4state.c:3376:2-3: Unneeded semicolon
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: zhengbin <zhengbin13@huawei.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/nfs4state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index 390ad454a229..be141136aec2 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c @@ -3422,7 +3422,7 @@ static __be32 nfsd4_map_bcts_dir(u32 *dir) case NFS4_CDFC4_BACK_OR_BOTH: *dir = NFS4_CDFC4_BOTH; return nfs_ok; - }; + } return nfserr_inval; } |