stress.dll16: Enable compilation with long types.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-02-18 09:17:04 +01:00 committed by Alexandre Julliard
parent fcfab4e5a9
commit bd575863f4
2 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,3 @@
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = stress.dll16
EXTRADLLFLAGS = -m16

View File

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