Eric Pouech : stress.dll16: Enable compilation with long types.

Alexandre Julliard julliard at winehq.org
Fri Feb 18 15:14:58 CST 2022


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

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

stress.dll16: 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/stress.dll16/Makefile.in | 1 -
 dlls/stress.dll16/stress.c    | 4 ++--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dlls/stress.dll16/Makefile.in b/dlls/stress.dll16/Makefile.in
index 76731e716d6..0c93384c33e 100644
--- a/dlls/stress.dll16/Makefile.in
+++ b/dlls/stress.dll16/Makefile.in
@@ -1,4 +1,3 @@
-EXTRADEFS = -DWINE_NO_LONG_TYPES
 MODULE    = stress.dll16
 EXTRADLLFLAGS = -m16
 
diff --git a/dlls/stress.dll16/stress.c b/dlls/stress.dll16/stress.c
index be292d9d58a..f3c845b988c 100644
--- a/dlls/stress.dll16/stress.c
+++ b/dlls/stress.dll16/stress.c
@@ -29,7 +29,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(stress);
  */
 INT16 WINAPI AllocDiskSpace(LONG lLeft, UINT16 uDrive)
 {
-	FIXME("(%d, %d) - stub\n",
+	FIXME("(%d, %ld) - stub\n",
 		       uDrive, lLeft);
 
 	return 1;
@@ -62,7 +62,7 @@ BOOL16 WINAPI AllocGDIMem(UINT16 uLeft)
  */
 BOOL16 WINAPI AllocMem(DWORD dwLeft)
 {
-	FIXME("(%d) - stub\n", dwLeft);
+	FIXME("(%ld) - stub\n", dwLeft);
         return TRUE;
 }
 




More information about the wine-cvs mailing list