aboutsummaryrefslogtreecommitdiff
path: root/coreutils/rmdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/rmdir.c')
-rw-r--r--coreutils/rmdir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/rmdir.c b/coreutils/rmdir.c
index 75bfc2813..231793ce0 100644
--- a/coreutils/rmdir.c
+++ b/coreutils/rmdir.c
@@ -50,7 +50,7 @@ int rmdir_main(int argc UNUSED_PARAM, char **argv)
50 if ((flags & IGNORE_NON_EMPTY) && errno == ENOTEMPTY) 50 if ((flags & IGNORE_NON_EMPTY) && errno == ENOTEMPTY)
51 break; 51 break;
52#endif 52#endif
53 bb_perror_msg("'%s'", path); /* Match gnu rmdir msg. */ 53 bb_perror_msg("'%s'", path); /* Match gnu rmdir msg. */
54 status = EXIT_FAILURE; 54 status = EXIT_FAILURE;
55 } else if (flags & PARENTS) { 55 } else if (flags & PARENTS) {
56 /* Note: path was not "" since rmdir succeeded. */ 56 /* Note: path was not "" since rmdir succeeded. */