Eric Pouech : vtdapi.vxd: Enable compilation with long types.

Alexandre Julliard julliard at winehq.org
Mon Feb 21 16:15:13 CST 2022


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

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Mon Feb 21 07:59:13 2022 +0100

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

diff --git a/dlls/vtdapi.vxd/Makefile.in b/dlls/vtdapi.vxd/Makefile.in
index 043b4f7d2e3..685495e70e9 100644
--- a/dlls/vtdapi.vxd/Makefile.in
+++ b/dlls/vtdapi.vxd/Makefile.in
@@ -1,4 +1,3 @@
-EXTRADEFS = -DWINE_NO_LONG_TYPES
 MODULE    = vtdapi.vxd
 
 C_SRCS = \
diff --git a/dlls/vtdapi.vxd/vtdapi.c b/dlls/vtdapi.vxd/vtdapi.c
index 7abc00a83f5..43e75f5ce17 100644
--- a/dlls/vtdapi.vxd/vtdapi.c
+++ b/dlls/vtdapi.vxd/vtdapi.c
@@ -42,7 +42,7 @@ BOOL WINAPI VTDAPI_DeviceIoControl( DWORD code, LPVOID lpvInBuffer, DWORD cbInBu
         return TRUE;
 
     default:
-        FIXME( "Control %d not implemented\n", code);
+        FIXME( "Control %ld not implemented\n", code);
         return FALSE;
     }
 }




More information about the wine-cvs mailing list