From d28770775b59cdffb4dc0175c6f774ecc739f1ee Mon Sep 17 00:00:00 2001 From: augustss Date: Tue, 27 Jun 2000 21:25:02 +0000 Subject: Make it compile with AUDIO_DEBUG after the mmap API change. --- sys/dev/audio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev') 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; -- cgit