From 39ebaba506f86bfee8b4ab716588ca429c906396 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 9 May 2008 11:18:27 +0200 Subject: [PATCH] winefile: Fix the printf formats for file sizes. --- programs/winefile/winefile.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/programs/winefile/winefile.c b/programs/winefile/winefile.c index d21f595f8be..9b41aa182c9 100644 --- a/programs/winefile/winefile.c +++ b/programs/winefile/winefile.c @@ -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 */ -- 2.11.4.GIT