Skip to content

Commit 6148b77

Browse files
Yan Zhencmaiolino
authored andcommitted
xfs: scrub: convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Yan Zhen <[email protected]> Reviewed-by: Darrick J. Wong <[email protected]> Signed-off-by: Carlos Maiolino <[email protected]>
1 parent f6225ee commit 6148b77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fs/xfs/scrub/ialloc_repair.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ xrep_ibt_build_new_trees(
657657
* Start by setting up the inobt staging cursor.
658658
*/
659659
fsbno = XFS_AGB_TO_FSB(sc->mp, sc->sa.pag->pag_agno,
660-
XFS_IBT_BLOCK(sc->mp)),
660+
XFS_IBT_BLOCK(sc->mp));
661661
xrep_newbt_init_ag(&ri->new_inobt, sc, &XFS_RMAP_OINFO_INOBT, fsbno,
662662
XFS_AG_RESV_NONE);
663663
ri->new_inobt.bload.claim_block = xrep_ibt_claim_block;
@@ -678,7 +678,7 @@ xrep_ibt_build_new_trees(
678678
resv = XFS_AG_RESV_NONE;
679679

680680
fsbno = XFS_AGB_TO_FSB(sc->mp, sc->sa.pag->pag_agno,
681-
XFS_FIBT_BLOCK(sc->mp)),
681+
XFS_FIBT_BLOCK(sc->mp));
682682
xrep_newbt_init_ag(&ri->new_finobt, sc, &XFS_RMAP_OINFO_INOBT,
683683
fsbno, resv);
684684
ri->new_finobt.bload.claim_block = xrep_fibt_claim_block;

0 commit comments

Comments
 (0)