From: Zheng Yongjun Date: Thu, 7 Jan 2021 20:59:18 +0000 (-0500) Subject: fs/xfs: convert comma to semicolon X-Git-Tag: v5.11.0-rc0~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d3ed327c9d4a96882fbdc7bd5f3c404e0f79b0ef;p=thirdparty%2Fxfsprogs-dev.git fs/xfs: convert comma to semicolon Source kernel commit: 1189686e5440041057f8cc21a7c1d13bb6642cb9 Replace a comma between expression statements by a semicolon. Signed-off-by: Zheng Yongjun Reviewed-by: Brian Foster Reviewed-by: Eric Sandeen Reviewed-by: Darrick J. Wong Signed-off-by: Darrick J. Wong Signed-off-by: Eric Sandeen --- diff --git a/libxfs/xfs_btree.c b/libxfs/xfs_btree.c index a408aa42f..da122d88d 100644 --- a/libxfs/xfs_btree.c +++ b/libxfs/xfs_btree.c @@ -4071,7 +4071,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);