diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2015-01-21 09:21:06 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2015-01-21 09:21:06 +0000 |
commit | 89b6be1823a8936716624cc528e6b08e60a12128 (patch) | |
tree | d345563c272d51c4f3408811f0898fb509b197de /usr.bin | |
parent | d904fb356fc0d4cf25a699fa0757fb1ca22b8b74 (diff) |
fix macro breakage and update usage();
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/aucat/aucat.1 | 4 | ||||
-rw-r--r-- | usr.bin/aucat/aucat.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/aucat/aucat.1 b/usr.bin/aucat/aucat.1 index 010018b9c34..c6d34f38dc9 100644 --- a/usr.bin/aucat/aucat.1 +++ b/usr.bin/aucat/aucat.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: aucat.1,v 1.107 2015/01/21 08:43:55 ratchov Exp $ +.\" $OpenBSD: aucat.1,v 1.108 2015/01/21 09:21:05 jmc Exp $ .\" .\" Copyright (c) 2006 Alexandre Ratchov <alex@caoua.org> .\" @@ -24,7 +24,7 @@ .Nm aucat .Bk -words .Op Fl dn -.Op Dl b Ar size +.Op Fl b Ar size .Op Fl c Ar min : Ns Ar max .Op Fl e Ar enc .Op Fl f Ar device diff --git a/usr.bin/aucat/aucat.c b/usr.bin/aucat/aucat.c index 70fbe809ffb..e62ac2fd407 100644 --- a/usr.bin/aucat/aucat.c +++ b/usr.bin/aucat/aucat.c @@ -133,9 +133,9 @@ struct slot *slot_list = NULL; unsigned int voice_len[] = { 3, 3, 3, 3, 2, 2, 3 }; unsigned int common_len[] = { 0, 2, 3, 2, 0, 0, 1, 1 }; -char usagestr[] = "usage: aucat [-d] [-b nframes] " - "[-c min:max] [-e enc] [-f device]\n\t" - "[-j flag] [-q port] [-r rate] [-v volume]\n"; +char usagestr[] = "usage: aucat [-dn] [-b size] " + "[-c min:max] [-e enc] [-f device] [-h fmt]\n\t" + "[-i file] [-j flag] [-o file] [-q port] [-r rate] [-v volume]\n"; static void slot_log(struct slot *s) |