Skip to content

Commit 655593a

Browse files
Chen Nibrauner
authored andcommitted
afs: Convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni <[email protected]> Link: https://lore.kernel.org/r/[email protected]/ Link: https://lore.kernel.org/r/[email protected] Acked-by: David Howells <[email protected]> Signed-off-by: Christian Brauner <[email protected]>
1 parent 391b59b commit 655593a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fs/afs/inode.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ static int afs_iget5_set_root(struct inode *inode, void *opaque)
512512
struct afs_vnode *vnode = AFS_FS_I(inode);
513513

514514
vnode->volume = as->volume;
515-
vnode->fid.vid = as->volume->vid,
515+
vnode->fid.vid = as->volume->vid;
516516
vnode->fid.vnode = 1;
517517
vnode->fid.unique = 1;
518518
inode->i_ino = 1;
@@ -545,7 +545,7 @@ struct inode *afs_root_iget(struct super_block *sb, struct key *key)
545545
BUG_ON(!(inode->i_state & I_NEW));
546546

547547
vnode = AFS_FS_I(inode);
548-
vnode->cb_v_check = atomic_read(&as->volume->cb_v_break),
548+
vnode->cb_v_check = atomic_read(&as->volume->cb_v_break);
549549
afs_set_netfs_context(vnode);
550550

551551
op = afs_alloc_operation(key, as->volume);

0 commit comments

Comments
 (0)