Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/sys/dev Pull up rev 1.131 from nathanw:
details: https://anonhg.NetBSD.org/src/rev/14fffa70b4ed
branches: netbsd-1-5
changeset: 488633:14fffa70b4ed
user: simonb <simonb%NetBSD.org@localhost>
date: Sat Jul 22 04:58:46 2000 +0000
description:
Pull up rev 1.131 from nathanw:
More printf format munging for off_t: when printing as %lld, cast to
long long.
diffstat:
sys/dev/audio.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 7a00b0399e39 -r 14fffa70b4ed sys/dev/audio.c
--- a/sys/dev/audio.c Sat Jul 22 04:56:03 2000 +0000
+++ b/sys/dev/audio.c Sat Jul 22 04:58:46 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: audio.c,v 1.125.4.1 2000/06/30 16:27:45 simonb Exp $ */
+/* $NetBSD: audio.c,v 1.125.4.2 2000/07/22 04:58:46 simonb Exp $ */
/*
* Copyright (c) 1991-1993 Regents of the University of California.
@@ -1809,7 +1809,7 @@
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;
Home |
Main Index |
Thread Index |
Old Index