diff options
| author | nathanw <nathanw@NetBSD.org> | 2000-07-19 13:44:24 +0000 |
|---|---|---|
| committer | nathanw <nathanw@NetBSD.org> | 2000-07-19 13:44:24 +0000 |
| commit | 554019cd4b2a9597cfbd0fada7d24e7dc7f0dfc9 (patch) | |
| tree | e3b4aa9772f7830431ad81aa5016fdf6bc35a524 /sys/dev | |
| parent | 59d775afc1c9bb9204c0b4c42863332353a5e2b9 (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.c | 4 |
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; |
