fs/xfs: convert comma to semicolon
authorZheng Yongjun <zhengyongjun3@huawei.com>
Fri, 11 Dec 2020 19:36:23 +0000 (11:36 -0800)
committerDarrick J. Wong <darrick.wong@oracle.com>
Sat, 12 Dec 2020 18:49:47 +0000 (10:49 -0800)
Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
fs/xfs/libxfs/xfs_btree.c

index 2d25bab687647794ae804f1347467ab248c3a886..51dbff9b090836deafe894ec336e6c7e6374cc9a 100644 (file)
@@ -4070,7 +4070,7 @@ xfs_btree_delrec(
         * surviving block, and log it.
         */
        xfs_btree_set_numrecs(left, lrecs + rrecs);
-       xfs_btree_get_sibling(cur, right, &cptr, XFS_BB_RIGHTSIB),
+       xfs_btree_get_sibling(cur, right, &cptr, XFS_BB_RIGHTSIB);
        xfs_btree_set_sibling(cur, left, &cptr, XFS_BB_RIGHTSIB);
        xfs_btree_log_block(cur, lbp, XFS_BB_NUMRECS | XFS_BB_RIGHTSIB);