Eric Pouech : fntcache: Enable compilation with long types.

Alexandre Julliard julliard at winehq.org
Thu Feb 10 16:10:29 CST 2022


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

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Thu Feb 10 08:42:37 2022 +0100

fntcache: 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/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-cvs mailing list