diff options
author | Denis Vlasenko | 2009-04-21 11:09:40 +0000 |
---|---|---|
committer | Denis Vlasenko | 2009-04-21 11:09:40 +0000 |
commit | 5e34ff29bcc870936ab18172f438a34d042d4e03 (patch) | |
tree | a5e7a528f2f916eb883f1161eadceacdf2dca4be /archival/libunarchive/decompress_uncompress.c | |
parent | 8b814b4a349e2262c0ad25793b05206a14651ebb (diff) | |
download | busybox-5e34ff29bcc870936ab18172f438a34d042d4e03.zip busybox-5e34ff29bcc870936ab18172f438a34d042d4e03.tar.gz |
*: mass renaming of USE_XXXX to IF_XXXX
and SKIP_XXXX to IF_NOT_XXXX - the second one was especially
badly named. It was not skipping anything!
Diffstat (limited to 'archival/libunarchive/decompress_uncompress.c')
-rw-r--r-- | archival/libunarchive/decompress_uncompress.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/archival/libunarchive/decompress_uncompress.c b/archival/libunarchive/decompress_uncompress.c index fe1491e..2877c89 100644 --- a/archival/libunarchive/decompress_uncompress.c +++ b/archival/libunarchive/decompress_uncompress.c @@ -72,11 +72,11 @@ * be stored in the compressed file. */ -USE_DESKTOP(long long) int FAST_FUNC +IF_DESKTOP(long long) int FAST_FUNC unpack_Z_stream(int fd_in, int fd_out) { - USE_DESKTOP(long long total_written = 0;) - USE_DESKTOP(long long) int retval = -1; + IF_DESKTOP(long long total_written = 0;) + IF_DESKTOP(long long) int retval = -1; unsigned char *stackp; long code; int finchar; @@ -265,7 +265,7 @@ unpack_Z_stream(int fd_in, int fd_out) if (outpos >= OBUFSIZ) { full_write(fd_out, outbuf, outpos); //error check?? - USE_DESKTOP(total_written += outpos;) + IF_DESKTOP(total_written += outpos;) outpos = 0; } stackp += i; @@ -294,10 +294,10 @@ unpack_Z_stream(int fd_in, int fd_out) if (outpos > 0) { full_write(fd_out, outbuf, outpos); //error check?? - USE_DESKTOP(total_written += outpos;) + IF_DESKTOP(total_written += outpos;) } - retval = USE_DESKTOP(total_written) + 0; + retval = IF_DESKTOP(total_written) + 0; err: free(inbuf); free(outbuf); |