mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-06 13:23:18 +00:00
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 <thunder.leizhen@huawei.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
f39650de68
commit
92aeda50d4
@ -385,7 +385,7 @@ static int INIT get_next_block(struct bunzip_data *bd)
|
|||||||
bd->inbufBits =
|
bd->inbufBits =
|
||||||
(bd->inbufBits << 8)|bd->inbuf[bd->inbufPos++];
|
(bd->inbufBits << 8)|bd->inbuf[bd->inbufPos++];
|
||||||
bd->inbufBitCount += 8;
|
bd->inbufBitCount += 8;
|
||||||
};
|
}
|
||||||
bd->inbufBitCount -= hufGroup->maxLen;
|
bd->inbufBitCount -= hufGroup->maxLen;
|
||||||
j = (bd->inbufBits >> bd->inbufBitCount)&
|
j = (bd->inbufBits >> bd->inbufBitCount)&
|
||||||
((1 << hufGroup->maxLen)-1);
|
((1 << hufGroup->maxLen)-1);
|
||||||
|
Loading…
Reference in New Issue
Block a user