fs/erofs/decompressor_lzma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
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
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
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,
© 2016 - 2026 Red Hat, Inc.