diff options
Diffstat (limited to 'archival')
-rw-r--r-- | archival/libunarchive/decompress_uncompress.c | 14 |
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) | |||
85 | { | 85 | { |
86 | USE_DESKTOP(long long total_written = 0;) | 86 | USE_DESKTOP(long long total_written = 0;) |
87 | unsigned char *stackp; | 87 | unsigned char *stackp; |
88 | long int code; | 88 | long code; |
89 | int finchar; | 89 | int finchar; |
90 | long int oldcode; | 90 | long oldcode; |
91 | long int incode; | 91 | long incode; |
92 | int inbits; | 92 | int inbits; |
93 | int posbits; | 93 | int posbits; |
94 | int outpos; | 94 | int outpos; |
95 | int insize; | 95 | int insize; |
96 | int bitmask; | 96 | int bitmask; |
97 | long int free_ent; | 97 | long free_ent; |
98 | long int maxcode; | 98 | long maxcode; |
99 | long int maxmaxcode; | 99 | long maxmaxcode; |
100 | int n_bits; | 100 | int n_bits; |
101 | int rsize = 0; | 101 | int rsize = 0; |
102 | RESERVE_CONFIG_UBUFFER(inbuf, IBUFSIZ + 64); | 102 | RESERVE_CONFIG_UBUFFER(inbuf, IBUFSIZ + 64); |
@@ -243,7 +243,7 @@ uncompress(int fd_in, int fd_out) | |||
243 | } | 243 | } |
244 | 244 | ||
245 | /* Generate output characters in reverse order */ | 245 | /* Generate output characters in reverse order */ |
246 | while ((long int) code >= (long int) 256) { | 246 | while ((long) code >= (long) 256) { |
247 | *--stackp = tab_suffixof(code); | 247 | *--stackp = tab_suffixof(code); |
248 | code = tab_prefixof(code); | 248 | code = tab_prefixof(code); |
249 | } | 249 | } |