From 164ea84ed6c0a67cd54468c2c06f28094913d5b2 Mon Sep 17 00:00:00 2001 From: "brendan%mozilla.org" Date: Tue, 4 May 2004 22:52:46 +0000 Subject: [PATCH] Track Seek/Tell 32=>64-bit API change in DEBUG_MUX ifdefs. git-svn-id: svn://10.0.0.236/trunk@155943 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/io/nsFastLoadFile.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/xpcom/io/nsFastLoadFile.cpp b/mozilla/xpcom/io/nsFastLoadFile.cpp index 5437b3cf18a..56b09d22f46 100644 --- a/mozilla/xpcom/io/nsFastLoadFile.cpp +++ b/mozilla/xpcom/io/nsFastLoadFile.cpp @@ -492,10 +492,10 @@ nsFastLoadFileReader::SelectMuxedDocument(nsISupports* aURI, mCurrentDocumentMapEntry = docMapEntry; #ifdef DEBUG_MUX - PRUint32 currentSegmentOffset; + PRInt64 currentSegmentOffset; Tell(¤tSegmentOffset); - trace_mux('r', "select %p (%p) offset %lu\n", - aURI, key.get(), currentSegmentOffset); + trace_mux('r', "select %p (%p) offset %ld\n", + aURI, key.get(), (long) currentSegmentOffset); #endif return NS_OK; }