summaryrefslogtreecommitdiff
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
parent793fb328b49e3858bcbce50a21a5bc4dc1521a35 (diff)
Fix typo. From Feico Dillema <dillema@acm.org>
-rw-r--r--usr.bin/audio/ctl/ctl.c5
-rw-r--r--usr.bin/audioctl/audioctl.c5
2 files changed, 6 insertions, 4 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 },
diff --git a/usr.bin/audioctl/audioctl.c b/usr.bin/audioctl/audioctl.c
index f63bbfbb103..739cd13a1c6 100644
--- a/usr.bin/audioctl/audioctl.c
+++ b/usr.bin/audioctl/audioctl.c
@@ -1,4 +1,4 @@
-/* $NetBSD: audioctl.c,v 1.14 1998/04/27 16:55:23 augustss Exp $ */
+/* $NetBSD: audioctl.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 },