summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorChen Ni <nichen@iscas.ac.cn>2025-11-18 09:32:29 +0800
committerSteve French <stfrench@microsoft.com>2025-12-14 18:35:56 -0600
commit0446356e9f29d81757dc64ae7c61743e28d91ac0 (patch)
treedebb7ff14b9630be6c1da3c9c21a0f2aeea15cdb /fs
parentd180b1d9c7a401656332b27e3428a949c00748d3 (diff)
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>
Diffstat (limited to 'fs')
-rw-r--r--fs/smb/server/vfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/smb/server/vfs.c b/fs/smb/server/vfs.c
index 98b0eb966d91..f891344bd76b 100644
--- a/fs/smb/server/vfs.c
+++ b/fs/smb/server/vfs.c
@@ -702,7 +702,7 @@ retry:
rd.old_parent = NULL;
rd.new_parent = new_path.dentry;
rd.flags = flags;
- rd.delegated_inode = NULL,
+ rd.delegated_inode = NULL;
err = start_renaming_dentry(&rd, lookup_flags, old_child, &new_last);
if (err)
goto out_drop_write;