[PATCH 01/24] dlls/sfc_os: enable compilation with long types

Eric Pouech eric.pouech at gmail.com
Fri Feb 18 02:15:57 CST 2022


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

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