[PATCH 14/27] dlls/fntcache: enable compilation with long types

Eric Pouech eric.pouech at gmail.com
Thu Feb 10 01:42:37 CST 2022


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

---
 dlls/fntcache/Makefile.in |    1 -
 dlls/fntcache/main.c      |    2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/dlls/fntcache/Makefile.in b/dlls/fntcache/Makefile.in
index d87c7c2d4ea..dbc72506fe3 100644
--- a/dlls/fntcache/Makefile.in
+++ b/dlls/fntcache/Makefile.in
@@ -1,4 +1,3 @@
-EXTRADEFS = -DWINE_NO_LONG_TYPES
 MODULE    = fntcache.dll
 IMPORTS   = advapi32
 
diff --git a/dlls/fntcache/main.c b/dlls/fntcache/main.c
index 0f8508652f2..baa06916068 100644
--- a/dlls/fntcache/main.c
+++ b/dlls/fntcache/main.c
@@ -50,7 +50,7 @@ static DWORD WINAPI service_handler( DWORD ctrl, DWORD event_type, void *event_d
         SetEvent( stop_event );
         return NO_ERROR;
     default:
-        FIXME( "got service ctrl %x\n", ctrl );
+        FIXME( "got service ctrl %lx\n", ctrl );
         status.dwCurrentState = SERVICE_RUNNING;
         SetServiceStatus( service_handle, &status );
         return NO_ERROR;




More information about the wine-devel mailing list