diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-04-11 15:11:48 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-04-11 15:11:48 +0000 |
commit | 9e966ffed4e5ab6b78de0472e8e2b040d1d95ba2 (patch) | |
tree | a2262827cc2683fa8d66cfd9e7cc396e938f00ab | |
parent | f70f6cef393c1cc51ec6cabfc51cdf6c12d95286 (diff) | |
download | busybox-w32-9e966ffed4e5ab6b78de0472e8e2b040d1d95ba2.tar.gz busybox-w32-9e966ffed4e5ab6b78de0472e8e2b040d1d95ba2.tar.bz2 busybox-w32-9e966ffed4e5ab6b78de0472e8e2b040d1d95ba2.zip |
Remove unneeded printf statment
-rw-r--r-- | libbb/gz_open.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libbb/gz_open.c b/libbb/gz_open.c index 1be5a171d..19ec0a066 100644 --- a/libbb/gz_open.c +++ b/libbb/gz_open.c | |||
@@ -22,7 +22,6 @@ extern int gz_open(FILE *compressed_file, int *pid) | |||
22 | /* child process */ | 22 | /* child process */ |
23 | close(unzip_pipe[0]); | 23 | close(unzip_pipe[0]); |
24 | unzip(compressed_file, fdopen(unzip_pipe[1], "w")); | 24 | unzip(compressed_file, fdopen(unzip_pipe[1], "w")); |
25 | printf("finished unzipping\n"); | ||
26 | fflush(NULL); | 25 | fflush(NULL); |
27 | fclose(compressed_file); | 26 | fclose(compressed_file); |
28 | close(unzip_pipe[1]); | 27 | close(unzip_pipe[1]); |