diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-08-16 17:01:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-08-16 17:01:03 +0000 |
commit | 6346db23bda7041e13c4664e7cd282aa4280cbcd (patch) | |
tree | afdca751558a2d28ab930f167ffac8a1ba30a841 | |
parent | 992bbaefb1e21869bf547cf2e545a554de767523 (diff) |
change seek to int
-rw-r--r-- | sys/sys/audioio.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/audioio.h b/sys/sys/audioio.h index b325fa08370..64467a4c627 100644 --- a/sys/sys/audioio.h +++ b/sys/sys/audioio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: audioio.h,v 1.8 1998/06/02 11:01:11 provos Exp $ */ +/* $OpenBSD: audioio.h,v 1.9 1998/08/16 17:01:02 deraadt Exp $ */ /* $NetBSD: audioio.h,v 1.21 1998/05/27 17:21:29 augustss Exp $ */ /* @@ -48,7 +48,7 @@ struct audio_prinfo { u_int encoding; /* data encoding (AUDIO_ENCODING_* below) */ u_int gain; /* volume level */ u_int port; /* selected I/O port */ - u_long seek; /* BSD extension */ + u_int seek; /* BSD extension */ u_int avail_ports; /* available I/O ports */ u_int buffer_size; /* total size audio buffer */ u_int _ispare[1]; |