diff options
author | Matt Kraai | 2000-10-23 18:03:46 +0000 |
---|---|---|
committer | Matt Kraai | 2000-10-23 18:03:46 +0000 |
commit | 207061ac0d400f663dc411c132d7fc07dca7d496 (patch) | |
tree | 4d50f76923e65e6247dc399f20b37c5c1bc79487 /archival/gunzip.c | |
parent | 2be4797a06849cf5c9c4f97e1489d70b7fc8be36 (diff) | |
download | busybox-207061ac0d400f663dc411c132d7fc07dca7d496.zip busybox-207061ac0d400f663dc411c132d7fc07dca7d496.tar.gz |
Fix error messages.
Diffstat (limited to 'archival/gunzip.c')
-rw-r--r-- | archival/gunzip.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archival/gunzip.c b/archival/gunzip.c index 7a360a6..0c9d406 100644 --- a/archival/gunzip.c +++ b/archival/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 */ |