Eric Pouech : sfc_os: Enable compilation with long types.

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


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

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

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

diff --git a/dlls/sfc_os/Makefile.in b/dlls/sfc_os/Makefile.in
index 5488245195f..e3e727fc262 100644
--- a/dlls/sfc_os/Makefile.in
+++ b/dlls/sfc_os/Makefile.in
@@ -1,4 +1,3 @@
-EXTRADEFS = -DWINE_NO_LONG_TYPES
 MODULE    = sfc_os.dll
 IMPORTLIB = sfc_os
 
diff --git a/dlls/sfc_os/sfc_os.c b/dlls/sfc_os/sfc_os.c
index f6163f5b4eb..61614264c77 100644
--- a/dlls/sfc_os/sfc_os.c
+++ b/dlls/sfc_os/sfc_os.c
@@ -119,7 +119,7 @@ BOOL WINAPI SfcIsKeyProtected(HKEY hKey, LPCWSTR lpSubKey, REGSAM samDesired)
 
 DWORD WINAPI SfcConnectToServer(DWORD unknown)
 {
-    FIXME("%x\n", unknown);
+    FIXME("%lx\n", unknown);
     return 0;
 }
 




More information about the wine-cvs mailing list