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 | |
parent | a6127aacef047ed7661722705b052811fbe7f467 (diff) | |
download | busybox-9213a9e0f2d8fd638ecd02e2628d96dd5c7d233e.tar.gz |
whitespace cleanup
Diffstat (limited to 'archival')
-rw-r--r-- | archival/dpkg.c | 6 | ||||
-rw-r--r-- | archival/libunarchive/decompress_unzip.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c index 163d91f19..2180d1868 100644 --- a/archival/dpkg.c +++ b/archival/dpkg.c @@ -1316,8 +1316,8 @@ static void list_packages(void) /* go through status hash, dereference package hash and finally strings */ for (i=0; i<STATUS_HASH_PRIME+1; i++) { - if (status_hashtable[i]) { - const char *stat_str; /* status string */ + if (status_hashtable[i]) { + const char *stat_str; /* status string */ const char *name_str; /* package name */ const char *vers_str; /* version */ char s1, s2; /* status abbreviations */ @@ -1333,7 +1333,7 @@ static void list_packages(void) /* get abbreviation for status field 2 */ for (j=0, spccnt=0; stat_str[j] && spccnt<2; j++) { - if (stat_str[j] == ' ') spccnt++; + if (stat_str[j] == ' ') spccnt++; } s2 = stat_str[j]; 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 @@ * Ken Turkowski, Dave Mack and Peter Jannesen. * * See the file algorithm.doc for the compression algorithms and file formats. - * + * * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ @@ -853,7 +853,7 @@ int inflate_unzip(int in, int out) /* Create the crc table */ gunzip_crc_table = crc32_filltable(0); gunzip_crc = ~0; - + /* Allocate space for buffer */ bytebuffer = xmalloc(bytebuffer_max); |