vtdapi.vxd: 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-21 07:59:13 +01:00 committed by Alexandre Julliard
parent 2c65675955
commit 3c4b6653ba
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = vtdapi.vxd
C_SRCS = \

View File

@ -42,7 +42,7 @@ BOOL WINAPI VTDAPI_DeviceIoControl( DWORD code, LPVOID lpvInBuffer, DWORD cbInBu
return TRUE;
default:
FIXME( "Control %d not implemented\n", code);
FIXME( "Control %ld not implemented\n", code);
return FALSE;
}
}