From 87468857f685863cd763ae361c2cb3be0ee53a68 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Fri, 13 Apr 2007 23:22:00 +0000 Subject: style fixes --- archival/libunarchive/decompress_uncompress.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'archival/libunarchive/decompress_uncompress.c') 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); } -- cgit v1.2.3