Eric Pouech : sppc: Enable compilation with long types.

Alexandre Julliard julliard at winehq.org
Fri Feb 18 15:14:58 CST 2022


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

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Fri Feb 18 09:16:45 2022 +0100

sppc: 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/sppc/Makefile.in | 1 -
 dlls/sppc/sppc.c      | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/dlls/sppc/Makefile.in b/dlls/sppc/Makefile.in
index 4d31f9dc923..1cd222f6175 100644
--- a/dlls/sppc/Makefile.in
+++ b/dlls/sppc/Makefile.in
@@ -1,4 +1,3 @@
-EXTRADEFS = -DWINE_NO_LONG_TYPES
 MODULE    = sppc.dll
 
 EXTRADLLFLAGS = -Wb,--prefer-native
diff --git a/dlls/sppc/sppc.c b/dlls/sppc/sppc.c
index ce3183f39bd..8819961d7c6 100644
--- a/dlls/sppc/sppc.c
+++ b/dlls/sppc/sppc.c
@@ -60,7 +60,7 @@ HRESULT WINAPI SLClose(HSLC handle)
 
 HRESULT WINAPI SLPersistApplicationPolicies(const SLID *app, const SLID *product, DWORD flags)
 {
-    FIXME("(%s,%s,%x) stub\n", wine_dbgstr_guid(app), wine_dbgstr_guid(product), flags);
+    FIXME("(%s,%s,%lx) stub\n", wine_dbgstr_guid(app), wine_dbgstr_guid(product), flags);
 
     if (!app)
         return E_INVALIDARG;




More information about the wine-cvs mailing list