diff options
author | billf <billf@FreeBSD.org> | 2001-07-14 21:56:04 +0000 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 2001-07-14 21:56:04 +0000 |
commit | 5e7c07338ee0f08588f612c7381b0b08e1585d18 (patch) | |
tree | cff32cb025fea50431eb5408d9a29f70e79b42a1 | |
parent | 005561658b9af067097291196a81953f8f378733 (diff) | |
download | FreeBSD-src-5e7c07338ee0f08588f612c7381b0b08e1585d18.zip FreeBSD-src-5e7c07338ee0f08588f612c7381b0b08e1585d18.tar.gz |
add -a to usage()
Submitted by: Ashley Penney <ashp@unloved.org>
MFC after: 3 days
-rw-r--r-- | sbin/dmesg/dmesg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/dmesg/dmesg.c b/sbin/dmesg/dmesg.c index 6af42e7..53ac0f3 100644 --- a/sbin/dmesg/dmesg.c +++ b/sbin/dmesg/dmesg.c @@ -194,6 +194,6 @@ main(argc, argv) void usage() { - (void)fprintf(stderr, "usage: dmesg [-M core] [-N system]\n"); + (void)fprintf(stderr, "usage: dmesg [-a] [-M core] [-N system]\n"); exit(1); } |