aboutsummaryrefslogtreecommitdiff
path: root/archival/libunarchive
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-13 23:22:00 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-13 23:22:00 +0000
commit87468857f685863cd763ae361c2cb3be0ee53a68 (patch)
treea8fec29d731170b2a36b27d18e2d9720c970bf57 /archival/libunarchive
parentf7fcca4af7593218f2185e69715ab3ae16c6cf29 (diff)
downloadbusybox-87468857f685863cd763ae361c2cb3be0ee53a68.tar.gz
style fixes
Diffstat (limited to 'archival/libunarchive')
-rw-r--r--archival/libunarchive/decompress_uncompress.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/archival/libunarchive/decompress_uncompress.c b/archival/libunarchive/decompress_uncompress.c
index 8ce3cba74..a1d7fd67c 100644
--- a/archival/libunarchive/decompress_uncompress.c
+++ b/archival/libunarchive/decompress_uncompress.c
@@ -85,18 +85,18 @@ uncompress(int fd_in, int fd_out)
{
USE_DESKTOP(long long total_written = 0;)
unsigned char *stackp;
- long int code;
+ long code;
int finchar;
- long int oldcode;
- long int incode;
+ long oldcode;
+ long incode;
int inbits;
int posbits;
int outpos;
int insize;
int bitmask;
- long int free_ent;
- long int maxcode;
- long int maxmaxcode;
+ long free_ent;
+ long maxcode;
+ long maxmaxcode;
int n_bits;
int rsize = 0;
RESERVE_CONFIG_UBUFFER(inbuf, IBUFSIZ + 64);
@@ -243,7 +243,7 @@ uncompress(int fd_in, int fd_out)
}
/* Generate output characters in reverse order */
- while ((long int) code >= (long int) 256) {
+ while ((long) code >= (long) 256) {
*--stackp = tab_suffixof(code);
code = tab_prefixof(code);
}