Skip to content

Commit 0446356

Browse files
Chen Nismfrench
authored andcommitted
ksmbd: convert comma to semicolon
Replace comma between expressions with semicolons. Using a ',' in place of a ';' can have unintended side effects. Although that is not the case here, it is seems best to use ';' unless ',' is intended. Found by inspection. No functional change intended. Compile tested only. Signed-off-by: Chen Ni <nichen@iscas.ac.cn> Acked-by: Namjae Jeon <linkinjeon@kernel.org> Signed-off-by: Steve French <stfrench@microsoft.com>
1 parent d180b1d commit 0446356

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fs/smb/server/vfs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ int ksmbd_vfs_rename(struct ksmbd_work *work, const struct path *old_path,
702702
rd.old_parent = NULL;
703703
rd.new_parent = new_path.dentry;
704704
rd.flags = flags;
705-
rd.delegated_inode = NULL,
705+
rd.delegated_inode = NULL;
706706
err = start_renaming_dentry(&rd, lookup_flags, old_child, &new_last);
707707
if (err)
708708
goto out_drop_write;

0 commit comments

Comments
 (0)