Skip to content

Commit 14e9283

Browse files
Chen Nihsiangkao
authored andcommitted
erofs: convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Chao Yu <[email protected]> Signed-off-by: Gao Xiang <[email protected]>
1 parent 5d3bb77 commit 14e9283

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/erofs/decompressor_lzma.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ static int z_erofs_lzma_decompress(struct z_erofs_decompress_req *rq,
188188
!rq->partial_decoding);
189189
buf.in_size = min(rq->inputsize, PAGE_SIZE - rq->pageofs_in);
190190
rq->inputsize -= buf.in_size;
191-
buf.in = dctx.kin + rq->pageofs_in,
191+
buf.in = dctx.kin + rq->pageofs_in;
192192
dctx.bounce = strm->bounce;
193193
do {
194194
dctx.avail_out = buf.out_size - buf.out_pos;

0 commit comments

Comments
 (0)