diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2008-10-26 12:38:39 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2008-10-26 12:38:39 +0000 |
commit | 021a1c06134232fcfac46c8c4fe4376263bddd87 (patch) | |
tree | a3d9f89620af72f34a6104a20be480240ae2e859 /usr.bin | |
parent | f97524ea12ee0c91e9e17487b82a459277776046 (diff) |
zap `q' from the getopts string too,
requested by jmc@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/aucat/aucat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/aucat/aucat.c b/usr.bin/aucat/aucat.c index 757bbff955f..22757cc9d75 100644 --- a/usr.bin/aucat/aucat.c +++ b/usr.bin/aucat/aucat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aucat.c,v 1.29 2008/10/26 11:55:22 jmc Exp $ */ +/* $OpenBSD: aucat.c,v 1.30 2008/10/26 12:38:38 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -314,7 +314,7 @@ main(int argc, char **argv) xrun = XRUN_IGNORE; ivol = ovol = MIDI_TO_ADATA(127); - while ((c = getopt(argc, argv, "b:c:C:e:r:h:x:i:o:f:lqu")) + while ((c = getopt(argc, argv, "b:c:C:e:r:h:x:i:o:f:lu")) != -1) { switch (c) { case 'h': |