aboutsummaryrefslogtreecommitdiff
path: root/gunzip.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 /gunzip.c
parent2be4797a06849cf5c9c4f97e1489d70b7fc8be36 (diff)
downloadbusybox-207061ac0d400f663dc411c132d7fc07dca7d496.tar.gz
Fix error messages.
Diffstat (limited to 'gunzip.c')
-rw-r--r--gunzip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gunzip.c b/gunzip.c
index 7a360a6ea..0c9d40670 100644
--- a/gunzip.c
+++ b/gunzip.c
@@ -1120,11 +1120,11 @@ int in, out; /* input and output file descriptors */
if (res == 3) {
errorMsg(memory_exhausted);
} else if (res != 0) {
- errorMsg("invalid compressed data--format violated");
+ errorMsg("invalid compressed data--format violated\n");
}
} else {
- errorMsg("internal error, invalid method");
+ errorMsg("internal error, invalid method\n");
}
/* Get the crc and original length */
@@ -1153,10 +1153,10 @@ int in, out; /* input and output file descriptors */
/* Validate decompression */
if (orig_crc != updcrc(outbuf, 0)) {
- errorMsg("invalid compressed data--crc error");
+ errorMsg("invalid compressed data--crc error\n");
}
if (orig_len != (ulg) bytes_out) {
- errorMsg("invalid compressed data--length error");
+ errorMsg("invalid compressed data--length error\n");
}
/* Check if there are more entries in a pkzip file */