Track Seek/Tell 32=>64-bit API change in DEBUG_MUX ifdefs.

This commit is contained in:
brendan%mozilla.org 2004-05-04 22:52:46 +00:00
Родитель bde38bb50d
Коммит 0b263dedd4
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -492,10 +492,10 @@ nsFastLoadFileReader::SelectMuxedDocument(nsISupports* aURI,
mCurrentDocumentMapEntry = docMapEntry; mCurrentDocumentMapEntry = docMapEntry;
#ifdef DEBUG_MUX #ifdef DEBUG_MUX
PRUint32 currentSegmentOffset; PRInt64 currentSegmentOffset;
Tell(&currentSegmentOffset); Tell(&currentSegmentOffset);
trace_mux('r', "select %p (%p) offset %lu\n", trace_mux('r', "select %p (%p) offset %ld\n",
aURI, key.get(), currentSegmentOffset); aURI, key.get(), (long) currentSegmentOffset);
#endif #endif
return NS_OK; return NS_OK;
} }