diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2020-10-15 20:10:51 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-10-16 11:11:19 -0700 |
commit | 2f22385fb1211a90f53ee197e0f41ae0d35b391c (patch) | |
tree | 2db4ef8edbf573183e837f8a10a7eb03995fb562 /lib/decompress_bunzip2.c | |
parent | f1e594acb1bdf29b583fe205793699a8e7c35fc0 (diff) | |
download | linux-2f22385fb1211a90f53ee197e0f41ae0d35b391c.tar.gz linux-2f22385fb1211a90f53ee197e0f41ae0d35b391c.tar.bz2 linux-2f22385fb1211a90f53ee197e0f41ae0d35b391c.zip |
lib: decompress_bunzip2: delete duplicated words
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>
Diffstat (limited to 'lib/decompress_bunzip2.c')
-rw-r--r-- | lib/decompress_bunzip2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/decompress_bunzip2.c b/lib/decompress_bunzip2.c index f9628f3924ce..c72c865032fa 100644 --- a/lib/decompress_bunzip2.c +++ b/lib/decompress_bunzip2.c @@ -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]) |