aboutsummaryrefslogtreecommitdiff
path: root/coreutils/rm.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-19 19:40:43 +0000
committerEric Andersen <andersen@codepoet.org>2001-03-19 19:40:43 +0000
commit8269396491913ab551b558756f6581a4d12bd00f (patch)
tree40e85453e966d85dadd037dc78b0d1cae0f989b7 /coreutils/rm.c
parent2ccfef2004675cc6cb18b9cdad1ebdaf892a10c2 (diff)
downloadbusybox-8269396491913ab551b558756f6581a4d12bd00f.tar.gz
Simpify detection of no options.
Diffstat (limited to 'coreutils/rm.c')
-rw-r--r--coreutils/rm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/rm.c b/coreutils/rm.c
index a3542aaf6..768e3ca64 100644
--- a/coreutils/rm.c
+++ b/coreutils/rm.c
@@ -112,7 +112,7 @@ extern int rm_main(int argc, char **argv)
}
}
- if ((argc-optind) < 1 && forceFlag == FALSE) {
+ if (argc == optind && forceFlag == FALSE) {
show_usage();
}
#ifdef BB_FEATURE_RM_INTERACTIVE