Eric Pouech : termsv: Enable compilation with long types.

Alexandre Julliard julliard at winehq.org
Mon Feb 7 15:56:04 CST 2022


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

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Mon Feb  7 08:40:07 2022 +0100

termsv: 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/termsv/Makefile.in | 1 -
 programs/termsv/main.c      | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/programs/termsv/Makefile.in b/programs/termsv/Makefile.in
index 9876e2faaba..6a83ee3b9b9 100644
--- a/programs/termsv/Makefile.in
+++ b/programs/termsv/Makefile.in
@@ -1,4 +1,3 @@
-EXTRADEFS = -DWINE_NO_LONG_TYPES
 MODULE    = termsv.exe
 IMPORTS   = advapi32
 
diff --git a/programs/termsv/main.c b/programs/termsv/main.c
index 2ca6d0809df..680f57fc711 100644
--- a/programs/termsv/main.c
+++ b/programs/termsv/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