diff options
author | Chen Ni <nichen@iscas.ac.cn> | 2024-07-24 04:07:21 +0200 |
---|---|---|
committer | Gao Xiang <hsiangkao@linux.alibaba.com> | 2024-07-26 12:48:12 +0200 |
commit | 14e9283fb22d0d259820a5f05c6059678bab9ac5 (patch) | |
tree | e97423a3b9db3f77053f8d15b52ed800858d0126 /fs | |
parent | erofs: support multi-page folios for erofs_bread() (diff) | |
download | linux-14e9283fb22d0d259820a5f05c6059678bab9ac5.tar.xz linux-14e9283fb22d0d259820a5f05c6059678bab9ac5.zip |
erofs: convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Link: https://lore.kernel.org/r/20240724020721.2389738-1-nichen@iscas.ac.cn
Reviewed-by: Chao Yu <chao@kernel.org>
Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/erofs/decompressor_lzma.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ again: !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; |