Module: wine Branch: master Commit: 08a422bf17d846d4aff93a28c61ece7463e67bf0 URL: https://gitlab.winehq.org/wine/wine/-/commit/08a422bf17d846d4aff93a28c61ece7...
Author: Rémi Bernon rbernon@codeweavers.com Date: Sun Jan 14 12:02:21 2024 +0100
winexinput: Demote BusContainerId FIXME message to WARN.
---
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; }