summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authornathanw <nathanw@NetBSD.org>2000-07-19 13:44:24 +0000
committernathanw <nathanw@NetBSD.org>2000-07-19 13:44:24 +0000
commit554019cd4b2a9597cfbd0fada7d24e7dc7f0dfc9 (patch)
treee3b4aa9772f7830431ad81aa5016fdf6bc35a524 /sys/dev
parent59d775afc1c9bb9204c0b4c42863332353a5e2b9 (diff)
More printf format munging for off_t: when printing as %lld, cast to long long.
Diffstat (limited to 'sys/dev')
-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 0008e4afe47..7adf5b55350 100644
--- a/sys/dev/audio.c
+++ b/sys/dev/audio.c
@@ -1,4 +1,4 @@
-/* $NetBSD: audio.c,v 1.130 2000/07/06 00:43:04 thorpej Exp $ */
+/* $NetBSD: audio.c,v 1.131 2000/07/19 13:44:24 nathanw Exp $ */
/*
* Copyright (c) 1991-1993 Regents of the University of California.
@@ -1803,7 +1803,7 @@ audio_mmap(sc, off, prot)
struct audio_ringbuffer *cb;
int s;
- DPRINTF(("audio_mmap: off=%lld, prot=%d\n", off, prot));
+ DPRINTF(("audio_mmap: off=%lld, prot=%d\n", (long long)off, prot));
if (!(hw->get_props(sc->hw_hdl) & AUDIO_PROP_MMAP) || !hw->mappage)
return -1;