diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-11 17:20:00 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-11 17:20:00 +0000 |
commit | f7996f3b700a22797565e9aa57e251e6e3ac1e4d (patch) | |
tree | af4e797eef0a65f4e3dba94b325da0ec08452d36 /archival/gzip.c | |
parent | 3821fb13ea404d243115ff8ec161273b62826513 (diff) | |
download | busybox-w32-f7996f3b700a22797565e9aa57e251e6e3ac1e4d.tar.gz busybox-w32-f7996f3b700a22797565e9aa57e251e6e3ac1e4d.tar.bz2 busybox-w32-f7996f3b700a22797565e9aa57e251e6e3ac1e4d.zip |
Trailing whitespace removal over entire tree
Diffstat (limited to 'archival/gzip.c')
-rw-r--r-- | archival/gzip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/gzip.c b/archival/gzip.c index bfe762128..b6705425e 100644 --- a/archival/gzip.c +++ b/archival/gzip.c | |||
@@ -792,13 +792,13 @@ static void check_match(IPos start, IPos match, int length) | |||
792 | typedef uch extra_bits_t; | 792 | typedef uch extra_bits_t; |
793 | 793 | ||
794 | /* extra bits for each length code */ | 794 | /* extra bits for each length code */ |
795 | static const extra_bits_t extra_lbits[LENGTH_CODES]= { | 795 | static const extra_bits_t extra_lbits[LENGTH_CODES]= { |
796 | 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, | 796 | 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, |
797 | 4, 4, 5, 5, 5, 5, 0 | 797 | 4, 4, 5, 5, 5, 5, 0 |
798 | }; | 798 | }; |
799 | 799 | ||
800 | /* extra bits for each distance code */ | 800 | /* extra bits for each distance code */ |
801 | static const extra_bits_t extra_dbits[D_CODES] = { | 801 | static const extra_bits_t extra_dbits[D_CODES] = { |
802 | 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, | 802 | 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, |
803 | 10, 10, 11, 11, 12, 12, 13, 13 | 803 | 10, 10, 11, 11, 12, 12, 13, 13 |
804 | }; | 804 | }; |