summaryrefslogtreecommitdiff
path: root/sys/dev/audio.c
diff options
context:
space:
mode:
authoraugustss <augustss@NetBSD.org>2000-06-27 21:25:02 +0000
committeraugustss <augustss@NetBSD.org>2000-06-27 21:25:02 +0000
commitd28770775b59cdffb4dc0175c6f774ecc739f1ee (patch)
tree80485b7ec1e07252aaef803f4e34a73cbbba84f0 /sys/dev/audio.c
parentf42e9888c5a84bdef5e16f0f93660b484c005c50 (diff)
Make it compile with AUDIO_DEBUG after the mmap API change.
Diffstat (limited to 'sys/dev/audio.c')
-rw-r--r--sys/dev/audio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/audio.c b/sys/dev/audio.c
index 9a7cd3156d9..1c6be2199cf 100644
--- a/sys/dev/audio.c
+++ b/sys/dev/audio.c
@@ -1,4 +1,4 @@
-/* $NetBSD: audio.c,v 1.128 2000/06/27 17:58:22 mrg Exp $ */
+/* $NetBSD: audio.c,v 1.129 2000/06/27 21:25:02 augustss Exp $ */
/*
* Copyright (c) 1991-1993 Regents of the University of California.
@@ -1806,7 +1806,7 @@ audio_mmap(sc, off, prot)
struct audio_ringbuffer *cb;
int s;
- DPRINTF(("audio_mmap: off=%d, prot=%d\n", off, prot));
+ DPRINTF(("audio_mmap: off=%lld, prot=%d\n", off, prot));
if (!(hw->get_props(sc->hw_hdl) & AUDIO_PROP_MMAP) || !hw->mappage)
return -1;