]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
xfs: convert comma to semicolon
authorChen Ni <nichen@iscas.ac.cn>
Tue, 16 Jul 2024 08:01:12 +0000 (16:01 +0800)
committerChandan Babu R <chandanbabu@kernel.org>
Mon, 29 Jul 2024 04:04:18 +0000 (09:34 +0530)
Replace a comma between expression statements by a semicolon.

Fixes: 178b48d588ea ("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>
fs/xfs/scrub/agheader_repair.c

index 0dbc484b182f9813adc26e3efcf3cd1d6a73b652..2f98d90d7fd66d099c9f8f78725e77700c540a78 100644 (file)
@@ -696,7 +696,7 @@ xrep_agfl_init_header(
         * step.
         */
        xagb_bitmap_init(&af.used_extents);
-       af.agfl_bno = xfs_buf_to_agfl_bno(agfl_bp),
+       af.agfl_bno = xfs_buf_to_agfl_bno(agfl_bp);
        xagb_bitmap_walk(agfl_extents, xrep_agfl_fill, &af);
        error = xagb_bitmap_disunion(agfl_extents, &af.used_extents);
        if (error)