summaryrefslogtreecommitdiffstats
path: root/libbb/gz_open.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/gz_open.c')
-rw-r--r--libbb/gz_open.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/gz_open.c b/libbb/gz_open.c
index 40f741f..3997e72 100644
--- a/libbb/gz_open.c
+++ b/libbb/gz_open.c
@@ -39,7 +39,7 @@ gz_open(FILE *compressed_file, int *pid)
return(NULL);
}
- /* If we don't flush, we end up with two copies of anything pending,
+ /* If we don't flush, we end up with two copies of anything pending,
one from the parent, one from the child */
fflush(stdout);
fflush(stderr);
@@ -71,7 +71,7 @@ gz_close(int gunzip_pid)
perror_msg("waitpid");
return -1;
}
-
+
if (WIFSIGNALED(status)) {
error_msg("Unzip process killed by signal %d.\n",
WTERMSIG(status));