diff options
-rw-r--r-- | src/rmdir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rmdir.c b/src/rmdir.c index f50849c71..e5a3977a7 100644 --- a/src/rmdir.c +++ b/src/rmdir.c @@ -64,7 +64,7 @@ static struct option const longopts[] = { /* Don't name this `--force' because it's not close enough in meaning to e.g. rm's -f option. */ - {"ignore-fail-on-non-empty", no_argument, NULL, 13}, + {"ignore-fail-on-non-empty", no_argument, NULL, CHAR_MAX + 1}, {"path", no_argument, NULL, 'p'}, {"parents", no_argument, NULL, 'p'}, @@ -163,7 +163,7 @@ main (int argc, char **argv) case 'p': empty_paths = 1; break; - case 13: + case CHAR_MAX + 1: ignore_fail_on_non_empty = 1; break; case 14: |