From c72f7fdb37891d32a75c91348e8cd4f50da661f0 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Fri, 1 Sep 2006 07:50:47 +0000 Subject: (refs #3) 64-bit format string fixes for Win32 --- test/backupdiff/testbackupdiff.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/backupdiff/testbackupdiff.cpp') diff --git a/test/backupdiff/testbackupdiff.cpp b/test/backupdiff/testbackupdiff.cpp index 6520907e..b000e88d 100644 --- a/test/backupdiff/testbackupdiff.cpp +++ b/test/backupdiff/testbackupdiff.cpp @@ -116,12 +116,20 @@ void check_encoded_file(const char *filename, int64_t OtherFileID, int new_block if(s > 0) { nnew++; + #ifdef WIN32 + TRACE2("%8I64d this s=%8I64d", b, s); + #else TRACE2("%8lld this s=%8lld", b, s); + #endif } else { nold++; + #ifdef WIN32 + TRACE2("%8I64d other i=%8I64d", b, 0 - s); + #else TRACE2("%8lld other i=%8lld", b, 0 - s); + #endif } // Decode the rest uint64_t iv = box_ntoh64(hdr.mEntryIVBase); -- cgit v1.2.3