diff options
Diffstat (limited to 'libbb/remove_file.c')
-rw-r--r-- | libbb/remove_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/remove_file.c b/libbb/remove_file.c index c6531a0..5b75f7f 100644 --- a/libbb/remove_file.c +++ b/libbb/remove_file.c @@ -33,7 +33,7 @@ int FAST_FUNC remove_file(const char *path, int flags) int status = 0; if (!(flags & FILEUTILS_RECUR)) { - bb_error_msg("%s: is a directory", path); + bb_error_msg("'%s' is a directory", path); return -1; } |