[PATCH 15/19] programs/presentationfontcache: enable compilation with long types

Eric Pouech eric.pouech at gmail.com
Fri Feb 4 02:57:17 CST 2022


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

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

diff --git a/programs/presentationfontcache/Makefile.in b/programs/presentationfontcache/Makefile.in
index 34e8ca96d46..412523e1048 100644
--- a/programs/presentationfontcache/Makefile.in
+++ b/programs/presentationfontcache/Makefile.in
@@ -1,4 +1,3 @@
-EXTRADEFS = -DWINE_NO_LONG_TYPES
 MODULE    = presentationfontcache.exe
 IMPORTS   = advapi32
 
diff --git a/programs/presentationfontcache/main.c b/programs/presentationfontcache/main.c
index ab2d0e21061..c3f9a98a2b4 100644
--- a/programs/presentationfontcache/main.c
+++ b/programs/presentationfontcache/main.c
@@ -51,7 +51,7 @@ static DWORD WINAPI service_handler( DWORD ctrl, DWORD event_type, LPVOID event_
         SetEvent( stop_event );
         return NO_ERROR;
     default:
-        WINE_FIXME( "got service ctrl %x\n", ctrl );
+        WINE_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