diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-17 16:28:10 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-17 16:28:10 +0000 |
commit | 9213a9e0f2d8fd638ecd02e2628d96dd5c7d233e (patch) | |
tree | 94c3c0678d1349497abe2db6004e9331e50f6d37 /archival/libunarchive | |
parent | a6127aacef047ed7661722705b052811fbe7f467 (diff) | |
download | busybox-w32-9213a9e0f2d8fd638ecd02e2628d96dd5c7d233e.tar.gz busybox-w32-9213a9e0f2d8fd638ecd02e2628d96dd5c7d233e.tar.bz2 busybox-w32-9213a9e0f2d8fd638ecd02e2628d96dd5c7d233e.zip |
whitespace cleanup
Diffstat (limited to 'archival/libunarchive')
-rw-r--r-- | archival/libunarchive/decompress_unzip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/libunarchive/decompress_unzip.c b/archival/libunarchive/decompress_unzip.c index c0203cc4a..74de9af44 100644 --- a/archival/libunarchive/decompress_unzip.c +++ b/archival/libunarchive/decompress_unzip.c | |||
@@ -29,7 +29,7 @@ | |||
29 | * Ken Turkowski, Dave Mack and Peter Jannesen. | 29 | * Ken Turkowski, Dave Mack and Peter Jannesen. |
30 | * | 30 | * |
31 | * See the file algorithm.doc for the compression algorithms and file formats. | 31 | * See the file algorithm.doc for the compression algorithms and file formats. |
32 | * | 32 | * |
33 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 33 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
34 | */ | 34 | */ |
35 | 35 | ||
@@ -853,7 +853,7 @@ int inflate_unzip(int in, int out) | |||
853 | /* Create the crc table */ | 853 | /* Create the crc table */ |
854 | gunzip_crc_table = crc32_filltable(0); | 854 | gunzip_crc_table = crc32_filltable(0); |
855 | gunzip_crc = ~0; | 855 | gunzip_crc = ~0; |
856 | 856 | ||
857 | /* Allocate space for buffer */ | 857 | /* Allocate space for buffer */ |
858 | bytebuffer = xmalloc(bytebuffer_max); | 858 | bytebuffer = xmalloc(bytebuffer_max); |
859 | 859 | ||