diff options
author | Denis Vlasenko | 2006-09-29 21:30:43 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-09-29 21:30:43 +0000 |
commit | a959588b80529ef5e02048ed71f3c7bf9a117217 (patch) | |
tree | 331b3963cb98fded02b753ca33bfa37cb48a97c6 /archival/gunzip.c | |
parent | 6c30db8bd37da1466dc71bf3c8c20851d8f46c43 (diff) | |
download | busybox-a959588b80529ef5e02048ed71f3c7bf9a117217.zip busybox-a959588b80529ef5e02048ed71f3c7bf9a117217.tar.gz |
Yet another silly little byte saving. couldn't -> cannot
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 a7f5ce4..9a68e62 100644 --- a/archival/gunzip.c +++ b/archival/gunzip.c @@ -119,13 +119,13 @@ int gunzip_main(int argc, char **argv) check_header_gzip(src_fd); status = inflate_gunzip(src_fd, dst_fd); if (status != 0) { - bb_error_msg_and_die("Error inflating"); + bb_error_msg_and_die("error inflating"); } } else { - bb_error_msg_and_die("Invalid magic"); + bb_error_msg_and_die("invalid magic"); } } else { - bb_error_msg_and_die("Invalid magic"); + bb_error_msg_and_die("invalid magic"); } if ((status != EXIT_SUCCESS) && (new_path)) { @@ -142,7 +142,7 @@ int gunzip_main(int argc, char **argv) /* delete_path will be NULL if in test mode or from stdin */ if (delete_path && (unlink(delete_path) == -1)) { - bb_error_msg_and_die("Couldn't remove %s", delete_path); + bb_error_msg_and_die("cannot remove %s", delete_path); } free(new_path); |