Changeset 913


Ignore:
Timestamp:
01/09/2006 08:50:47 (5 years ago)
Author:
chris
Message:

(refs #3)

64-bit format string fixes for Win32

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/chris/merge/test/backupdiff/testbackupdiff.cpp

    r912 r913  
    117117                { 
    118118                        nnew++; 
     119                        #ifdef WIN32 
     120                        TRACE2("%8I64d this  s=%8I64d", b, s); 
     121                        #else 
    119122                        TRACE2("%8lld this  s=%8lld", b, s); 
     123                        #endif 
    120124                } 
    121125                else 
    122126                { 
    123127                        nold++; 
     128                        #ifdef WIN32 
     129                        TRACE2("%8I64d other i=%8I64d", b, 0 - s);               
     130                        #else 
    124131                        TRACE2("%8lld other i=%8lld", b, 0 - s);                 
     132                        #endif 
    125133                } 
    126134                // Decode the rest 
Note: See TracChangeset for help on using the changeset viewer.