[PATCH 12/24] dlls/stress.dll16: enable compilation with long types

Eric Pouech eric.pouech at gmail.com
Fri Feb 18 02:17:04 CST 2022


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

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