Eric Pouech : presentationfontcache: Enable compilation with long types.

Alexandre Julliard julliard at winehq.org
Fri Feb 4 16:08:35 CST 2022


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

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

presentationfontcache: Enable compilation with long types.

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

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