Skip to content

Commit 7bf888f

Browse files
Chen NiChandan Babu R
authored andcommitted
xfs: convert comma to semicolon
Replace a comma between expression statements by a semicolon. Fixes: 178b48d ("xfs: remove the for_each_xbitmap_ helpers") Signed-off-by: Chen Ni <nichen@iscas.ac.cn> Reviewed-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Chandan Babu R <chandanbabu@kernel.org>
1 parent 8c2263b commit 7bf888f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/xfs/scrub/agheader_repair.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ xrep_agfl_init_header(
696696
* step.
697697
*/
698698
xagb_bitmap_init(&af.used_extents);
699-
af.agfl_bno = xfs_buf_to_agfl_bno(agfl_bp),
699+
af.agfl_bno = xfs_buf_to_agfl_bno(agfl_bp);
700700
xagb_bitmap_walk(agfl_extents, xrep_agfl_fill, &af);
701701
error = xagb_bitmap_disunion(agfl_extents, &af.used_extents);
702702
if (error)

0 commit comments

Comments
 (0)