[PATCH 02/15] programs/attrib: enable compilation with long types

Eric Pouech eric.pouech at gmail.com
Fri Jan 28 10:57:48 CST 2022



---
 programs/attrib/Makefile.in |    1 -
 programs/attrib/attrib.c    |    6 +++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/programs/attrib/Makefile.in b/programs/attrib/Makefile.in
index 128ecf91e32..2c2eade6b69 100644
--- a/programs/attrib/Makefile.in
+++ b/programs/attrib/Makefile.in
@@ -1,4 +1,3 @@
-EXTRADEFS = -DWINE_NO_LONG_TYPES
 MODULE    = attrib.exe
 IMPORTS   = user32
 
diff --git a/programs/attrib/attrib.c b/programs/attrib/attrib.c
index f8257461fe2..4344200b3ec 100644
--- a/programs/attrib/attrib.c
+++ b/programs/attrib/attrib.c
@@ -33,7 +33,7 @@ static WCHAR *ATTRIB_LoadMessage(UINT id)
     static WCHAR msg[MAXSTRING];
 
     if (!LoadStringW(GetModuleHandleW(NULL), id, msg, ARRAY_SIZE(msg))) {
-        WINE_FIXME("LoadString failed with %d\n", GetLastError());
+        WINE_FIXME("LoadString failed with %ld\n", GetLastError());
         lstrcpyW(msg, L"Failed!");
     }
     return msg;
@@ -75,7 +75,7 @@ static int WINAPIV ATTRIB_wprintf(const WCHAR *format, ...)
                    MAX_WRITECONSOLE_SIZE/sizeof(*output_bufW), &parms);
     va_end(parms);
     if (len == 0 && GetLastError() != ERROR_NO_WORK_DONE) {
-        WINE_FIXME("Could not format string: le=%u, fmt=%s\n", GetLastError(), wine_dbgstr_w(format));
+        WINE_FIXME("Could not format string: le=%lu, fmt=%s\n", GetLastError(), wine_dbgstr_w(format));
         return 0;
     }
 
@@ -143,7 +143,7 @@ static BOOL ATTRIB_processdirectory(const WCHAR *rootdir, const WCHAR *filespec,
     WIN32_FIND_DATAW fd;
     WCHAR flags[] = L"        ";
 
-    WINE_TRACE("Processing dir '%s', spec '%s', %d,%x,%x\n",
+    WINE_TRACE("Processing dir '%s', spec '%s', %d,%lx,%lx\n",
                wine_dbgstr_w(rootdir), wine_dbgstr_w(filespec),
                recurse, attrib_set, attrib_clear);
 




More information about the wine-devel mailing list