[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240724020721.2389738-1-nichen@iscas.ac.cn>
Date: Wed, 24 Jul 2024 10:07:21 +0800
From: Chen Ni <nichen@...as.ac.cn>
To: xiang@...nel.org,
chao@...nel.org,
huyue2@...lpad.com,
jefflexu@...ux.alibaba.com,
dhavale@...gle.com
Cc: linux-erofs@...ts.ozlabs.org,
linux-kernel@...r.kernel.org,
Chen Ni <nichen@...as.ac.cn>
Subject: [PATCH] erofs: convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Fixes: 84a2ceefff99 ("erofs: tidy up stream decompressors")
Signed-off-by: Chen Ni <nichen@...as.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
Powered by blists - more mailing lists