public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] erofs: convert comma to semicolon
@ 2024-07-24  2:07 Chen Ni
  2024-07-24  2:45 ` Gao Xiang
  0 siblings, 1 reply; 3+ messages in thread
From: Chen Ni @ 2024-07-24  2:07 UTC (permalink / raw)
  To: xiang, chao, huyue2, jefflexu, dhavale; +Cc: linux-erofs, linux-kernel, Chen Ni

Replace a comma between expression statements by a semicolon.

Fixes: 84a2ceefff99 ("erofs: tidy up stream decompressors")
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
---
 fs/erofs/decompressor_lzma.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/erofs/decompressor_lzma.c b/fs/erofs/decompressor_lzma.c
index 06a722b85a45..40666815046f 100644
--- a/fs/erofs/decompressor_lzma.c
+++ b/fs/erofs/decompressor_lzma.c
@@ -188,7 +188,7 @@ static int z_erofs_lzma_decompress(struct z_erofs_decompress_req *rq,
 			       !rq->partial_decoding);
 	buf.in_size = min(rq->inputsize, PAGE_SIZE - rq->pageofs_in);
 	rq->inputsize -= buf.in_size;
-	buf.in = dctx.kin + rq->pageofs_in,
+	buf.in = dctx.kin + rq->pageofs_in;
 	dctx.bounce = strm->bounce;
 	do {
 		dctx.avail_out = buf.out_size - buf.out_pos;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] erofs: convert comma to semicolon
  2024-07-24  2:07 [PATCH] erofs: convert comma to semicolon Chen Ni
@ 2024-07-24  2:45 ` Gao Xiang
  2024-07-26 10:02   ` Chao Yu
  0 siblings, 1 reply; 3+ messages in thread
From: Gao Xiang @ 2024-07-24  2:45 UTC (permalink / raw)
  To: Chen Ni, xiang, chao, huyue2, jefflexu, dhavale; +Cc: linux-erofs, linux-kernel



On 2024/7/24 10:07, Chen Ni wrote:
> Replace a comma between expression statements by a semicolon.
> 
> Fixes: 84a2ceefff99 ("erofs: tidy up stream decompressors")

I think typos are bugfixes, so I will drop this label.

> Signed-off-by: Chen Ni <nichen@iscas.ac.cn>

Will apply, thanks.

Thanks,
Gao Xiang

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] erofs: convert comma to semicolon
  2024-07-24  2:45 ` Gao Xiang
@ 2024-07-26 10:02   ` Chao Yu
  0 siblings, 0 replies; 3+ messages in thread
From: Chao Yu @ 2024-07-26 10:02 UTC (permalink / raw)
  To: Gao Xiang, Chen Ni, xiang, huyue2, jefflexu, dhavale
  Cc: linux-erofs, linux-kernel

On 2024/7/24 10:45, Gao Xiang wrote:
> 
> 
> On 2024/7/24 10:07, Chen Ni wrote:
>> Replace a comma between expression statements by a semicolon.
>>
>> Fixes: 84a2ceefff99 ("erofs: tidy up stream decompressors")
> 
> I think typos are bugfixes, so I will drop this label.
> 
>> Signed-off-by: Chen Ni <nichen@iscas.ac.cn>

Reviewed-by: Chao Yu <chao@kernel.org>

Thanks,

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-07-26 10:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-24  2:07 [PATCH] erofs: convert comma to semicolon Chen Ni
2024-07-24  2:45 ` Gao Xiang
2024-07-26 10:02   ` Chao Yu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox