[PATCH 11/28] dlls/query: enable compilation with long types

Eric Pouech eric.pouech at gmail.com
Thu Feb 17 00:11:25 CST 2022


Signed-off-by: Eric Pouech <eric.pouech at gmail.com>

---
 dlls/query/Makefile.in  |    1 -
 dlls/query/query_main.c |    4 ++--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dlls/query/Makefile.in b/dlls/query/Makefile.in
index 71352a5ff0f..8cdeb9c9765 100644
--- a/dlls/query/Makefile.in
+++ b/dlls/query/Makefile.in
@@ -1,4 +1,3 @@
-EXTRADEFS = -DWINE_NO_LONG_TYPES
 MODULE    = query.dll
 IMPORTS   = uuid
 
diff --git a/dlls/query/query_main.c b/dlls/query/query_main.c
index cc1eac596c7..9e27986e022 100644
--- a/dlls/query/query_main.c
+++ b/dlls/query/query_main.c
@@ -57,7 +57,7 @@ HRESULT WINAPI LocateCatalogsA(CHAR const *pwszScope, ULONG iBm,
                                CHAR *pwszCat, ULONG *pcCat)
 {
 
-    FIXME("%s %u %p %p %p %p\n", debugstr_a(pwszScope),
+    FIXME("%s %lu %p %p %p %p\n", debugstr_a(pwszScope),
           iBm, pwszMachine, pcMachine, pwszCat, pcCat);
     return CI_E_NOT_RUNNING;
 }
@@ -67,7 +67,7 @@ HRESULT WINAPI LocateCatalogsW(WCHAR const *pwszScope, ULONG iBm,
                                WCHAR *pwszCat, ULONG *pcCat)
 {
 
-    FIXME("%s %u %p %p %p %p\n", debugstr_w(pwszScope),
+    FIXME("%s %lu %p %p %p %p\n", debugstr_w(pwszScope),
           iBm, pwszMachine, pcMachine, pwszCat, pcCat);
     return CI_E_NOT_RUNNING;
 }




More information about the wine-devel mailing list