lib: decompress_bunzip2: remove an unneeded semicolon
authorZhen Lei <thunder.leizhen@huawei.com>
Thu, 1 Jul 2021 01:55:02 +0000 (18:55 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 1 Jul 2021 18:06:04 +0000 (11:06 -0700)
The semicolon immediately following '}' is unneeded.

Link: https://lkml.kernel.org/r/20210508094926.2889-1-thunder.leizhen@huawei.com
Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
lib/decompress_bunzip2.c

index c72c865..0d619cc 100644 (file)
@@ -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);