diff options
author | Denis Vlasenko | 2008-06-26 14:32:57 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-06-26 14:32:57 +0000 |
commit | f5d8c90d73777d912ddffea9dd7c537c3a1a43a5 (patch) | |
tree | a358be6a258f4c7c8905f1809737e74413df26c6 /archival/unzip.c | |
parent | 2649f215aecf923713d2f9a379cf651437ddf499 (diff) | |
download | busybox-f5d8c90d73777d912ddffea9dd7c537c3a1a43a5.zip busybox-f5d8c90d73777d912ddffea9dd7c537c3a1a43a5.tar.gz |
style fixes, no code changes
Diffstat (limited to 'archival/unzip.c')
-rw-r--r-- | archival/unzip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archival/unzip.c b/archival/unzip.c index c7d39da..2c89712 100644 --- a/archival/unzip.c +++ b/archival/unzip.c @@ -308,7 +308,7 @@ int unzip_main(int argc, char **argv) } else if (last_char_is(dst_fn, '/')) { /* Extract directory */ if (stat(dst_fn, &stat_buf) == -1) { if (errno != ENOENT) { - bb_perror_msg_and_die("cannot stat '%s'",dst_fn); + bb_perror_msg_and_die("cannot stat '%s'", dst_fn); } if (verbose) { printf(" creating: %s\n", dst_fn); @@ -328,7 +328,7 @@ int unzip_main(int argc, char **argv) _check_file: if (stat(dst_fn, &stat_buf) == -1) { /* File does not exist */ if (errno != ENOENT) { - bb_perror_msg_and_die("cannot stat '%s'",dst_fn); + bb_perror_msg_and_die("cannot stat '%s'", dst_fn); } i = 'y'; } else { /* File already exists */ @@ -345,7 +345,7 @@ int unzip_main(int argc, char **argv) i = key_buf[0]; } } else { /* File is not regular file */ - bb_error_msg_and_die("'%s' exists but is not regular file",dst_fn); + bb_error_msg_and_die("'%s' exists but is not regular file", dst_fn); } } } |