diff options
-rw-r--r-- | usr.bin/du/du.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/du/du.c b/usr.bin/du/du.c index 2dae19b..0c806cf 100644 --- a/usr.bin/du/du.c +++ b/usr.bin/du/du.c @@ -112,7 +112,7 @@ main(argc, argv) errno = 0; depth = atoi(optarg); if (errno == ERANGE || depth < 0) { - (void) fprintf(stderr, "Invalid argument to option d: %s", optarg); + (void) fprintf(stderr, "Invalid argument to option d: %s\n", optarg); usage(); } break; @@ -120,7 +120,6 @@ main(argc, argv) cflag = 1; break; case '?': - case 'h': default: usage(); } |