Re: [PATCH] xfs: convert comma to semicolon
From: Darrick J. Wong
Date: Mon Sep 16 2024 - 12:56:13 EST
On Tue, Sep 03, 2024 at 03:39:31PM +0800, Chen Ni wrote:
> Replace a comma between expression statements by a semicolon.
>
> Signed-off-by: Chen Ni <nichen@xxxxxxxxxxx>
Looks good,
Reviewed-by: Darrick J. Wong <djwong@xxxxxxxxxx>
--D
> ---
> fs/xfs/libxfs/xfs_attr_remote.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/xfs/libxfs/xfs_attr_remote.c b/fs/xfs/libxfs/xfs_attr_remote.c
> index 4c44ce1c8a64..5a55819f50f3 100644
> --- a/fs/xfs/libxfs/xfs_attr_remote.c
> +++ b/fs/xfs/libxfs/xfs_attr_remote.c
> @@ -525,7 +525,7 @@ xfs_attr_rmtval_set_value(
> ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
> (map.br_startblock != HOLESTARTBLOCK));
>
> - dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
> + dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock);
> dblkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
>
> error = xfs_buf_get(mp->m_ddev_targp, dblkno, dblkcnt, &bp);
> --
> 2.25.1
>
>