[PATCH] afs/dir: Fix typo in string

From: Dong Chuanjian
Date: Fri Jul 15 2022 - 03:52:49 EST


Remove the repeated ',' from string

Signed-off-by: Dong Chuanjian <chuanjian@xxxxxxxxxxxx>

diff --git a/fs/afs/dir_edit.c b/fs/afs/dir_edit.c
index d98e109ecee9..a01a61fc4cf1 100644
--- a/fs/afs/dir_edit.c
+++ b/fs/afs/dir_edit.c
@@ -214,7 +214,7 @@ void afs_edit_dir_add(struct afs_vnode *vnode,
loff_t i_size;
int slot;

- _enter(",,{%d,%s},", name->len, name->name);
+ _enter(",{%d,%s},", name->len, name->name);

i_size = i_size_read(&vnode->vfs_inode);
if (i_size > AFS_DIR_BLOCK_SIZE * AFS_DIR_MAX_BLOCKS ||
--
2.18.2