diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-07-15 22:10:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-07-15 22:10:48 +0000 |
commit | c3e13002961669e447e08084640b3d27162ca1d0 (patch) | |
tree | ea77a2051602313ff1961d21068dcf1111fe6eb2 /usr.bin | |
parent | 4bcc56e224f8660fdaa7203f93ff10b1f5ab9db8 (diff) |
fullduplex, and UINT
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/audioctl/audioctl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/audioctl/audioctl.c b/usr.bin/audioctl/audioctl.c index 957fe955afe..d5fcd2175d2 100644 --- a/usr.bin/audioctl/audioctl.c +++ b/usr.bin/audioctl/audioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: audioctl.c,v 1.3 1998/04/30 13:46:18 provos Exp $ */ +/* $OpenBSD: audioctl.c,v 1.4 1998/07/15 22:10:47 deraadt Exp $ */ /* $NetBSD: audioctl.c,v 1.14 1998/04/27 16:55:23 augustss Exp $ */ /* @@ -89,7 +89,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 }, |