From: Zhen Lei Date: Thu, 1 Jul 2021 01:55:02 +0000 (-0700) Subject: lib: decompress_bunzip2: remove an unneeded semicolon X-Git-Tag: v5.14-rc1~107^2~45 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=92aeda50d4a96b7a30fc87960497d5e15b7428f7;p=thirdparty%2Fkernel%2Flinux.git lib: decompress_bunzip2: remove an unneeded semicolon The semicolon immediately following '}' is unneeded. Link: https://lkml.kernel.org/r/20210508094926.2889-1-thunder.leizhen@huawei.com Signed-off-by: Zhen Lei Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/lib/decompress_bunzip2.c b/lib/decompress_bunzip2.c index c72c865032fab..0d619cc129dd1 100644 --- a/lib/decompress_bunzip2.c +++ b/lib/decompress_bunzip2.c @@ -385,7 +385,7 @@ static int INIT get_next_block(struct bunzip_data *bd) bd->inbufBits = (bd->inbufBits << 8)|bd->inbuf[bd->inbufPos++]; bd->inbufBitCount += 8; - }; + } bd->inbufBitCount -= hufGroup->maxLen; j = (bd->inbufBits >> bd->inbufBitCount)& ((1 << hufGroup->maxLen)-1);