Commit 92aeda50 authored by Zhen Lei's avatar Zhen Lei Committed by Linus Torvalds
Browse files

lib: decompress_bunzip2: remove an unneeded semicolon

parent f39650de
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);