Eric Pouech : query: Enable compilation with long types.

Alexandre Julliard julliard at winehq.org
Thu Feb 17 15:33:57 CST 2022


Module: wine
Branch: master
Commit: 5a30d6791826ce4f3d1490cf3e745e561df94b3e
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=5a30d6791826ce4f3d1490cf3e745e561df94b3e

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Thu Feb 17 07:11:25 2022 +0100

query: Enable compilation with long types.

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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-cvs mailing list