Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 8c2263b9 authored by Chen Ni's avatar Chen Ni Committed by Chandan Babu R
Browse files

xfs: convert comma to semicolon


Replace a comma between expression statements by a semicolon.

Signed-off-by: default avatarChen Ni <nichen@iscas.ac.cn>
Fixes: 8f4b980e

 ("xfs: pass the attr value to put_listent when possible")
Reviewed-by: default avatarDave Chinner <dchinner@redhat.com>
Reviewed-by: default avatarDarrick J. Wong <djwong@kernel.org>
Signed-off-by: default avatarChandan Babu R <chandanbabu@kernel.org>
parent af5d92f2
Branches
Tags
No related merge requests found
......@@ -139,7 +139,7 @@ xfs_attr_shortform_list(
sbp->name = sfe->nameval;
sbp->namelen = sfe->namelen;
/* These are bytes, and both on-disk, don't endian-flip */
sbp->value = &sfe->nameval[sfe->namelen],
sbp->value = &sfe->nameval[sfe->namelen];
sbp->valuelen = sfe->valuelen;
sbp->flags = sfe->flags;
sbp->hash = xfs_attr_hashval(dp->i_mount, sfe->flags,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment