Skip to content

Commit 2579e21

Browse files
Chen Nibrauner
authored andcommitted
ovl: remove unneeded semicolon
Remove unnecessary semicolons reported by Coccinelle/coccicheck and the semantic patch at scripts/coccinelle/misc/semicolon.cocci. Signed-off-by: Chen Ni <nichen@iscas.ac.cn> Fixed: 7ab96df ("VFS/nfsd/cachefiles/ovl: add start_creating() and end_creating()") Signed-off-by: Amir Goldstein <amir73il@gmail.com> Signed-off-by: Christian Brauner <brauner@kernel.org>
1 parent 101bf15 commit 2579e21

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fs/overlayfs/dir.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ static struct dentry *ovl_whiteout(struct ovl_fs *ofs)
105105
whiteout = dget(link);
106106
end_creating(link);
107107
if (!err)
108-
return whiteout;;
108+
return whiteout;
109109

110110
if (err != -EMLINK) {
111111
pr_warn("Failed to link whiteout - disabling whiteout inode sharing(nlink=%u, err=%u)\n",

0 commit comments

Comments
 (0)