diff options
author | 2003-11-21 10:20:06 +0000 | |
---|---|---|
committer | 2003-11-21 10:20:06 +0000 | |
commit | 9aed2acd10e1788fe9a50b68fca2fd53a13c7f63 (patch) | |
tree | 2d6171a376d9af3a0ad5cd6b998f4027793b3445 /usr.bin/mixerctl/mixerctl.c | |
parent | WCCPv1, not WCCPv2; from Berk D. Demir; (diff) | |
download | wireguard-openbsd-9aed2acd10e1788fe9a50b68fca2fd53a13c7f63.tar.xz wireguard-openbsd-9aed2acd10e1788fe9a50b68fca2fd53a13c7f63.zip |
mixerctl.1:
- put SYNOPSIS in standard form
- -n does not make sense with -q
- adjust -width of option list
- sort options
- a clarity fix from snj att pobox dott com
mixerctl.c:
- fix spacing in usage()
- sync usage() with SYNOPSIS
Diffstat (limited to 'usr.bin/mixerctl/mixerctl.c')
-rw-r--r-- | usr.bin/mixerctl/mixerctl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/mixerctl/mixerctl.c b/usr.bin/mixerctl/mixerctl.c index 0e66936b9ea..fc1671a7a52 100644 --- a/usr.bin/mixerctl/mixerctl.c +++ b/usr.bin/mixerctl/mixerctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mixerctl.c,v 1.12 2003/05/15 09:30:06 todd Exp $ */ +/* $OpenBSD: mixerctl.c,v 1.13 2003/11/21 10:20:06 jmc Exp $ */ /* $NetBSD: mixerctl.c,v 1.11 1998/04/27 16:55:23 augustss Exp $ */ /* @@ -396,9 +396,9 @@ usage(void) extern char *__progname; /* from crt0.o */ fprintf(stderr, - "usage: %s [-f file] [-n] [-v] -a\n" - " %s [-f file] [-n] [-v] name ...\n" - " %s [-f file] [-n] [-q] -w name=value ...\n", + "usage: %s [-nv] [-f file] -a\n" + " %s [-nv] [-f file] name [...]\n" + " %s [-q] [-f file] -w name=value [...]\n", __progname, __progname, __progname); exit(1); |