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; }