[PATCH 1/1] lib: decompress_bunzip2: Remove an unneeded semicolon

From: Zhen Lei
Date: Sat May 08 2021 - 05:49:44 EST


The semicolon immediately following '}' is unneeded.

Signed-off-by: Zhen Lei <thunder.leizhen@xxxxxxxxxx>
---
lib/decompress_bunzip2.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/decompress_bunzip2.c b/lib/decompress_bunzip2.c
index c72c865032fabe5..0d619cc129dd1de 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);
--
2.26.0.106.g9fadedd