diff options
author | bde <bde@FreeBSD.org> | 1999-09-08 05:46:47 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1999-09-08 05:46:47 +0000 |
commit | 4b01b2d6fc969207b87b3c5489505bcec0c314bb (patch) | |
tree | f7d57d134baa9a9696bba36f5575e09c4cbb3d5c /sbin | |
parent | 35f6a59e980baa7932fb06e0fdce36305afb046b (diff) | |
download | FreeBSD-src-4b01b2d6fc969207b87b3c5489505bcec0c314bb.zip FreeBSD-src-4b01b2d6fc969207b87b3c5489505bcec0c314bb.tar.gz |
Fixed bitrot in usage message (-n is now optional).
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/kldunload/kldunload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/kldunload/kldunload.c b/sbin/kldunload/kldunload.c index 912f0fe..b54bade 100644 --- a/sbin/kldunload/kldunload.c +++ b/sbin/kldunload/kldunload.c @@ -40,7 +40,7 @@ static void usage(void) { fprintf(stderr, "usage: kldunload [-v] -i id\n"); - fprintf(stderr, " kldunload [-v] -n name\n"); + fprintf(stderr, " kldunload [-v] [-n] name\n"); exit(1); } |