diff options
| author | Robert Nordier <rnordier@FreeBSD.org> | 1998-11-05 07:24:21 +0000 |
|---|---|---|
| committer | Robert Nordier <rnordier@FreeBSD.org> | 1998-11-05 07:24:21 +0000 |
| commit | dd2461309f576f97d21e141691f44e5b39014a56 (patch) | |
| tree | 6ba4a3bfc17163abc4e9a73372310b2ce8f9ee62 /usr.bin/du | |
| parent | 57037d27d5a5902e55d234ca57494f34ffb6a7c3 (diff) | |
Notes
Diffstat (limited to 'usr.bin/du')
| -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 2dae19bd4761..0c806cfd7ca4 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(); } |
