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; }