winefile: Fix the printf formats for file sizes.

This commit is contained in:
Alexandre Julliard 2008-05-09 11:18:27 +02:00
parent c8bdebde3d
commit 39ebaba506

View file

@ -196,15 +196,8 @@ static const TCHAR sQMarks[] = {'?','?','?','\0'};
static const TCHAR sWINEFILEFRAME[] = {'W','F','S','_','F','r','a','m','e','\0'};
static const TCHAR sWINEFILETREE[] = {'W','F','S','_','T','r','e','e','\0'};
#ifdef _MSC_VER
/* #define LONGLONGARG _T("I64") */
static const TCHAR sLongHexFmt[] = {'%','I','6','4','X','\0'};
static const TCHAR sLongNumFmt[] = {'%','I','6','4','d','\0'};
#else
/* #define LONGLONGARG _T("L") */
static const TCHAR sLongHexFmt[] = {'%','L','X','\0'};
static const TCHAR sLongNumFmt[] = {'%','L','d','\0'};
#endif
static const TCHAR sLongNumFmt[] = {'%','I','6','4','u','\0'};
/* load resource string */