diff options
author | Matt Kraai <kraai@debian.org> | 2001-12-20 23:13:26 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-12-20 23:13:26 +0000 |
commit | 1f0c43668ac332cbcf61cbdf71844799327cc8b9 (patch) | |
tree | 97414e991363fa613f229019d697280cae1097e0 /archival/libunarchive | |
parent | 31c73af656813b5cadcb1dd27adb9bbc62a98987 (diff) | |
download | busybox-w32-1f0c43668ac332cbcf61cbdf71844799327cc8b9.tar.gz busybox-w32-1f0c43668ac332cbcf61cbdf71844799327cc8b9.tar.bz2 busybox-w32-1f0c43668ac332cbcf61cbdf71844799327cc8b9.zip |
Remove `== TRUE' tests and convert `!= TRUE' and `== FALSE' tests to use !.
Diffstat (limited to 'archival/libunarchive')
-rw-r--r-- | archival/libunarchive/unarchive.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/libunarchive/unarchive.c b/archival/libunarchive/unarchive.c index 4a42eaf7d..ff9b5876f 100644 --- a/archival/libunarchive/unarchive.c +++ b/archival/libunarchive/unarchive.c | |||
@@ -227,7 +227,7 @@ char *unarchive(FILE *src_stream, FILE *out_stream, file_header_t *(*get_headers | |||
227 | } | 227 | } |
228 | } | 228 | } |
229 | 229 | ||
230 | if (extract_flag == TRUE) { | 230 | if (extract_flag) { |
231 | buffer = extract_archive(src_stream, out_stream, file_entry, extract_function, prefix); | 231 | buffer = extract_archive(src_stream, out_stream, file_entry, extract_function, prefix); |
232 | } else { | 232 | } else { |
233 | /* seek past the data entry */ | 233 | /* seek past the data entry */ |
@@ -238,4 +238,4 @@ char *unarchive(FILE *src_stream, FILE *out_stream, file_header_t *(*get_headers | |||
238 | free(file_entry); | 238 | free(file_entry); |
239 | } | 239 | } |
240 | return(buffer); | 240 | return(buffer); |
241 | } \ No newline at end of file | 241 | } |