diff options
author | Rob Landley | 2006-03-01 16:39:45 +0000 |
---|---|---|
committer | Rob Landley | 2006-03-01 16:39:45 +0000 |
commit | e7c43b66d74ee9902a6732122788a7a16bcfbf18 (patch) | |
tree | ebb8583e9e1265588592614c0b4878daded44125 /archival/unzip.c | |
parent | 93f2286e6e59dab5eed14b5912a79254031c5a62 (diff) | |
download | busybox-e7c43b66d74ee9902a6732122788a7a16bcfbf18.zip busybox-e7c43b66d74ee9902a6732122788a7a16bcfbf18.tar.gz |
Cleanup patch from Denis Vlasenko. Mostly variants of removing the if(x)
from before "if(x) free(x)".
Diffstat (limited to 'archival/unzip.c')
-rw-r--r-- | archival/unzip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archival/unzip.c b/archival/unzip.c index ff2b1a2..7e0d107 100644 --- a/archival/unzip.c +++ b/archival/unzip.c @@ -393,7 +393,7 @@ extern int unzip_main(int argc, char **argv) goto _check_file; default: - printf("error: invalid response [%c]\n",(char)i); + printf("error: invalid response [%c]\n",(char)i); goto _check_file; } @@ -405,8 +405,8 @@ extern int unzip_main(int argc, char **argv) } if (verbosity == v_list) { - printf(" -------- -------\n"); - printf("%9d %d files\n", total_size, total_entries); + printf(" -------- -------\n" + "%9d %d files\n", total_size, total_entries); } return(EXIT_SUCCESS); |