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 /libbb/gz_open.c | |
parent | f70f6cef393c1cc51ec6cabfc51cdf6c12d95286 (diff) |
Remove unneeded printf statment
Diffstat (limited to 'libbb/gz_open.c')
-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) /* child process */ close(unzip_pipe[0]); unzip(compressed_file, fdopen(unzip_pipe[1], "w")); - printf("finished unzipping\n"); fflush(NULL); fclose(compressed_file); close(unzip_pipe[1]); |