Re: [PATCH -next] fs/xfs: convert comma to semicolon

2021-01-20 Thread Darrick J. Wong
On Fri, Dec 11, 2020 at 04:41:12PM +0800, Zheng Yongjun wrote: > Replace a comma between expression statements by a semicolon. > > Signed-off-by: Zheng Yongjun Apparently I forgot to ack this before merging it... Reviewed-by: Darrick J. Wong --D > --- > fs/xfs/libxfs/xfs_btree.c | 2 +- >

Re: [PATCH -next] fs/xfs: convert comma to semicolon

2020-12-11 Thread Joe Perches
On Fri, 2020-12-11 at 16:17 +, David Laight wrote: > From: Eric Sandeen > > Sent: 11 December 2020 15:51 > > > > On 12/11/20 2:41 AM, Zheng Yongjun wrote: > > > Replace a comma between expression statements by a semicolon. > > > > > > Signed-off-by: Zheng Yongjun > > > > hah, that's an old

RE: [PATCH -next] fs/xfs: convert comma to semicolon

2020-12-11 Thread David Laight
From: Eric Sandeen > Sent: 11 December 2020 15:51 > > On 12/11/20 2:41 AM, Zheng Yongjun wrote: > > Replace a comma between expression statements by a semicolon. > > > > Signed-off-by: Zheng Yongjun > > hah, that's an old one. Harmless though, AFAICT. > > this fixes 91cca5df9bc8 ("[XFS]

Re: [PATCH -next] fs/xfs: convert comma to semicolon

2020-12-11 Thread Eric Sandeen
On 12/11/20 2:41 AM, Zheng Yongjun wrote: > Replace a comma between expression statements by a semicolon. > > Signed-off-by: Zheng Yongjun hah, that's an old one. Harmless though, AFAICT. this fixes 91cca5df9bc8 ("[XFS] implement generic xfs_btree_delete/delrec") if we dare add that tag ;)

Re: [PATCH -next] fs/xfs: convert comma to semicolon

2020-12-11 Thread Brian Foster
On Fri, Dec 11, 2020 at 04:41:12PM +0800, Zheng Yongjun wrote: > Replace a comma between expression statements by a semicolon. > > Signed-off-by: Zheng Yongjun > --- Reviewed-by: Brian Foster > fs/xfs/libxfs/xfs_btree.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git

[PATCH -next] fs/xfs: convert comma to semicolon

2020-12-11 Thread Zheng Yongjun
Replace a comma between expression statements by a semicolon. Signed-off-by: Zheng Yongjun --- fs/xfs/libxfs/xfs_btree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/xfs/libxfs/xfs_btree.c b/fs/xfs/libxfs/xfs_btree.c index 2d25bab68764..51dbff9b0908 100644 ---