aboutsummaryrefslogtreecommitdiff
path: root/gzip.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-10-23 18:03:46 +0000
committerMatt Kraai <kraai@debian.org>2000-10-23 18:03:46 +0000
commit207061ac0d400f663dc411c132d7fc07dca7d496 (patch)
tree4d50f76923e65e6247dc399f20b37c5c1bc79487 /gzip.c
parent2be4797a06849cf5c9c4f97e1489d70b7fc8be36 (diff)
downloadbusybox-207061ac0d400f663dc411c132d7fc07dca7d496.tar.gz
Fix error messages.
Diffstat (limited to 'gzip.c')
-rw-r--r--gzip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gzip.c b/gzip.c
index e518ffd16..6b25e47df 100644
--- a/gzip.c
+++ b/gzip.c
@@ -1381,7 +1381,7 @@ int length;
(char *) window + start, length) != EQUAL) {
fprintf(stderr,
" start %d, match %d, length %d\n", start, match, length);
- errorMsg("invalid match");
+ errorMsg("invalid match\n");
}
if (verbose > 1) {
fprintf(stderr, "\\[%d,%d]", start - match, length);
@@ -2911,7 +2911,7 @@ int eof; /* true if this is the last block for a file */
#endif
/* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */
if (buf == (char *) 0)
- errorMsg("block vanished");
+ errorMsg("block vanished\n");
copy_block(buf, (unsigned) stored_len, 0); /* without header */
compressed_len = stored_len << 3;
@@ -3094,7 +3094,7 @@ local void set_file_type()
bin_freq += dyn_ltree[n++].Freq;
*file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII;
if (*file_type == BINARY && translate_eol) {
- errorMsg("-l used on binary file");
+ errorMsg("-l used on binary file\n");
}
}
@@ -3256,7 +3256,7 @@ char *env; /* name of environment variable */
/* Copy the program name first */
if (oargc-- < 0)
- errorMsg("argc<=0");
+ errorMsg("argc<=0\n");
*(nargv++) = *(oargv++);
/* Then copy the environment args */