lib: decompress_bunzip2: delete duplicated words
authorRandy Dunlap <rdunlap@infradead.org>
Fri, 16 Oct 2020 03:10:51 +0000 (20:10 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 16 Oct 2020 18:11:19 +0000 (11:11 -0700)
Drop the repeated word "how".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Link: https://lkml.kernel.org/r/20200823040436.25852-1-rdunlap@infradead.org
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
lib/decompress_bunzip2.c

index f9628f3..c72c865 100644 (file)
@@ -390,7 +390,7 @@ static int INIT get_next_block(struct bunzip_data *bd)
                j = (bd->inbufBits >> bd->inbufBitCount)&
                        ((1 << hufGroup->maxLen)-1);
 got_huff_bits:
-               /* Figure how how many bits are in next symbol and
+               /* Figure how many bits are in next symbol and
                 * unget extras */
                i = hufGroup->minLen;
                while (j > limit[i])