summaryrefslogtreecommitdiff
path: root/usr.bin/audio/ctl
diff options
context:
space:
mode:
authoraugustss <augustss@NetBSD.org>1998-07-13 15:11:03 +0000
committeraugustss <augustss@NetBSD.org>1998-07-13 15:11:03 +0000
commit7a4317cfefdf6e637019b79525a00a7b9502effa (patch)
tree9ca0a6bf9cfaa5de0c26d792bb57ca1ca8bb54d7 /usr.bin/audio/ctl
parent793fb328b49e3858bcbce50a21a5bc4dc1521a35 (diff)
Fix typo. From Feico Dillema <dillema@acm.org>
Diffstat (limited to 'usr.bin/audio/ctl')
-rw-r--r--usr.bin/audio/ctl/ctl.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/audio/ctl/ctl.c b/usr.bin/audio/ctl/ctl.c
index 0275698621b..d51c7f4940f 100644
--- a/usr.bin/audio/ctl/ctl.c
+++ b/usr.bin/audio/ctl/ctl.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ctl.c,v 1.14 1998/04/27 16:55:23 augustss Exp $ */
+/* $NetBSD: ctl.c,v 1.15 1998/07/13 15:11:03 augustss Exp $ */
/*
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -88,7 +88,8 @@ struct field {
{ "config", &adev.config, STRING, READONLY },
{ "encodings", encbuf, STRING, READONLY },
{ "properties", &properties, PROPS, READONLY },
- { "full_duplex", &fullduplex, INT, 0 },
+ { "full_duplex", &fullduplex, UINT, 0 },
+ { "fullduplex", &fullduplex, UINT, 0 },
{ "blocksize", &info.blocksize, UINT, 0 },
{ "hiwat", &info.hiwat, UINT, 0 },
{ "lowat", &info.lowat, UINT, 0 },