From: Rémi Bernon rbernon@codeweavers.com
--- dlls/winexinput.sys/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winexinput.sys/main.c b/dlls/winexinput.sys/main.c index 6d33b740e46..f07e6b31bd5 100644 --- a/dlls/winexinput.sys/main.c +++ b/dlls/winexinput.sys/main.c @@ -526,7 +526,7 @@ static NTSTATUS WINAPI pdo_pnp(DEVICE_OBJECT *device, IRP *irp) else status = STATUS_SUCCESS; break; default: - FIXME("IRP_MN_QUERY_ID type %u, not implemented!\n", type); + WARN("IRP_MN_QUERY_ID type %u, not implemented!\n", type); status = irp->IoStatus.Status; break; }
From: Rémi Bernon rbernon@codeweavers.com
--- dlls/winebus.sys/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winebus.sys/main.c b/dlls/winebus.sys/main.c index e5adfed8611..172aa12b0ac 100644 --- a/dlls/winebus.sys/main.c +++ b/dlls/winebus.sys/main.c @@ -507,7 +507,7 @@ static NTSTATUS handle_IRP_MN_QUERY_ID(DEVICE_OBJECT *device, IRP *irp) irp->IoStatus.Information = (ULONG_PTR)get_instance_id(device); break; default: - FIXME("Unhandled type %08x\n", type); + WARN("Unhandled type %08x\n", type); return status; }