Commit bd575863 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

stress.dll16: Enable compilation with long types.

parent fcfab4e5
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = stress.dll16
EXTRADLLFLAGS = -m16
......
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment