mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:21:14 +00:00
winehid.sys: Fix printf format warnings with long types.
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0dd6bc9db0
commit
4b7a20af16
2 changed files with 1 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
|||
EXTRADEFS = -DWINE_NO_LONG_TYPES
|
||||
MODULE = winehid.sys
|
||||
IMPORTS = hidclass ntoskrnl
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ static NTSTATUS WINAPI internal_ioctl(DEVICE_OBJECT *device, IRP *irp)
|
|||
return IoCallDriver(((HID_DEVICE_EXTENSION *)device->DeviceExtension)->NextDeviceObject, irp);
|
||||
|
||||
default:
|
||||
FIXME("Unsupported ioctl %x (device=%x access=%x func=%x method=%x)\n",
|
||||
FIXME("Unsupported ioctl %#lx (device=%lx access=%lx func=%lx method=%lx)\n",
|
||||
code, code >> 16, (code >> 14) & 3, (code >> 2) & 0xfff, code & 3);
|
||||
IoCompleteRequest(irp, IO_NO_INCREMENT);
|
||||
return status;
|
||||
|
|
Loading…
Reference in a new issue