diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2016-06-21 22:35:40 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2016-06-21 22:35:40 +0000 |
commit | 5d351881addd31e06f2da01f50040cf2fcd2b46c (patch) | |
tree | f3d5ecd041e01b0a88fcfc1f931cd694a47d5ec3 | |
parent | f2ada2db1464df13335d236529c834c378ced993 (diff) |
use the same argument name for -f in usage() as in SYNOPSIS;
-rw-r--r-- | usr.bin/audioctl/audioctl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/audioctl/audioctl.c b/usr.bin/audioctl/audioctl.c index f67fe478e15..9330404498d 100644 --- a/usr.bin/audioctl/audioctl.c +++ b/usr.bin/audioctl/audioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: audioctl.c,v 1.32 2016/06/21 21:16:42 ratchov Exp $ */ +/* $OpenBSD: audioctl.c,v 1.33 2016/06/21 22:35:39 jmc Exp $ */ /* * Copyright (c) 2016 Alexandre Ratchov <alex@caoua.org> * @@ -63,9 +63,9 @@ struct field { }; const char usagestr[] = - "usage: audioctl [-f path]\n" - " audioctl [-n] [-f path] name ...\n" - " audioctl [-nq] [-f path] name=value ...\n"; + "usage: audioctl [-f file]\n" + " audioctl [-n] [-f file] name ...\n" + " audioctl [-nq] [-f file] name=value ...\n"; /* * parse encoding string (examples: s8, u8, s16, s16le, s24be ...) |