diff options
author | Denis Vlasenko | 2006-11-18 22:04:09 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-18 22:04:09 +0000 |
commit | 89f0b3486dfea233e6000f9af95b39a3ea7fd96e (patch) | |
tree | fc0d65e0d33b5b526b0d44d4c4da8143be3b53b1 /coreutils/mkdir.c | |
parent | 61126ab30a90b74e45a79ccb97074ab71afa6054 (diff) | |
download | busybox-89f0b3486dfea233e6000f9af95b39a3ea7fd96e.zip busybox-89f0b3486dfea233e6000f9af95b39a3ea7fd96e.tar.gz |
rodata cleanup. "unable to" == "cannot". -300 bytes
Diffstat (limited to 'coreutils/mkdir.c')
-rw-r--r-- | coreutils/mkdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c index 1aee8b2..c4d2676 100644 --- a/coreutils/mkdir.c +++ b/coreutils/mkdir.c @@ -44,7 +44,7 @@ int mkdir_main (int argc, char **argv) if(opt & 1) { mode = 0777; if (!bb_parse_mode (smode, &mode)) { - bb_error_msg_and_die ("invalid mode `%s'", smode); + bb_error_msg_and_die ("invalid mode '%s'", smode); } } if(opt & 2) |