diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-20 13:28:22 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-20 13:28:22 +0000 |
commit | e1a0d486e4804eae098571f1a6788394c2ee51ae (patch) | |
tree | c6f3435738900c8d53832eb919b1b2c3d524f2e5 /libbb/make_directory.c | |
parent | dd2982882bb192ea757f32514bc2ea0bc96f5ba0 (diff) |
message string changes, mostly for consistency, also -32 bytes in .rodata
Diffstat (limited to 'libbb/make_directory.c')
-rw-r--r-- | libbb/make_directory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/make_directory.c b/libbb/make_directory.c index 01a864119..fbec4e20e 100644 --- a/libbb/make_directory.c +++ b/libbb/make_directory.c @@ -99,6 +99,6 @@ int bb_make_directory (char *path, long mode, int flags) } while (1); - bb_perror_msg ("Cannot %s directory `%s'", fail_msg, path); + bb_perror_msg ("cannot %s directory '%s'", fail_msg, path); return -1; } |