Changeset 879


Ignore:
Timestamp:
31/08/2006 23:18:02 (5 years ago)
Author:
chris
Message:
  • lib/backupclient/BackupStoreObjectDump.cpp

Fix format strings on Win32 (refs #3)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/chris/merge/lib/backupclient/BackupStoreObjectDump.cpp

    r878 r879  
    114114                // Output item 
    115115                int16_t f = (*i)->GetFlags(); 
    116                 OutputLine(file, ToTrace, "%06llx %4lld %016llx %4d %3d %4d%s%s%s%s%s%s\n", 
     116#ifdef WIN32 
     117                OutputLine(file, ToTrace,  
     118                        "%06I64x %4I64d %016I64x %4d %3d %4d%s%s%s%s%s%s\n", 
     119#else 
     120                OutputLine(file, ToTrace,  
     121                        "%06llx %4lld %016llx %4d %3d %4d%s%s%s%s%s%s\n", 
     122#endif 
    117123                        (*i)->GetObjectID(), 
    118124                        (*i)->GetSizeInBlocks(), 
Note: See TracChangeset for help on using the changeset viewer.