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 c6531a0b9..5b75f7f30 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) | |||
33 | int status = 0; | 33 | int status = 0; |
34 | 34 | ||
35 | if (!(flags & FILEUTILS_RECUR)) { | 35 | if (!(flags & FILEUTILS_RECUR)) { |
36 | bb_error_msg("%s: is a directory", path); | 36 | bb_error_msg("'%s' is a directory", path); |
37 | return -1; | 37 | return -1; |
38 | } | 38 | } |
39 | 39 | ||