summaryrefslogtreecommitdiff
path: root/usr.bin/audioctl/audioctl.c
diff options
context:
space:
mode:
authorChristian Weisgerber <naddy@cvs.openbsd.org>2002-12-13 16:36:53 +0000
committerChristian Weisgerber <naddy@cvs.openbsd.org>2002-12-13 16:36:53 +0000
commite2e49a0f5482a82c71700f04ae62bc41f9a0a79b (patch)
treeb98713c0a2d2bf80a60094c159051e079f256bf3 /usr.bin/audioctl/audioctl.c
parent6ecf3951698a33480b5686c4dee8f9bfad031569 (diff)
audio_prinfo.seek is int now; document and sync
ok miod@ millert@
Diffstat (limited to 'usr.bin/audioctl/audioctl.c')
-rw-r--r--usr.bin/audioctl/audioctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/audioctl/audioctl.c b/usr.bin/audioctl/audioctl.c
index 9b82d5ba3b8..e47deb807a6 100644
--- a/usr.bin/audioctl/audioctl.c
+++ b/usr.bin/audioctl/audioctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: audioctl.c,v 1.7 2002/12/10 09:03:37 pvalchev Exp $ */
+/* $OpenBSD: audioctl.c,v 1.8 2002/12/13 16:36:52 naddy Exp $ */
/* $NetBSD: audioctl.c,v 1.14 1998/04/27 16:55:23 augustss Exp $ */
/*
@@ -107,7 +107,7 @@ struct field {
{ "play.balance", &info.play.balance, UCHAR, 0 },
{ "play.port", &info.play.port, XINT, 0 },
{ "play.avail_ports", &info.play.avail_ports, XINT, 0 },
- { "play.seek", &info.play.seek, ULONG, READONLY },
+ { "play.seek", &info.play.seek, UINT, READONLY },
{ "play.samples", &info.play.samples, UINT, READONLY },
{ "play.eof", &info.play.eof, UINT, READONLY },
{ "play.pause", &info.play.pause, UCHAR, 0 },
@@ -125,7 +125,7 @@ struct field {
{ "record.balance", &info.record.balance, UCHAR, 0 },
{ "record.port", &info.record.port, XINT, 0 },
{ "record.avail_ports", &info.record.avail_ports,XINT, 0 },
- { "record.seek", &info.record.seek, ULONG, READONLY },
+ { "record.seek", &info.record.seek, UINT, READONLY },
{ "record.samples", &info.record.samples, UINT, READONLY },
{ "record.eof", &info.record.eof, UINT, READONLY },
{ "record.pause", &info.record.pause, UCHAR, 0 },