Module: wine Branch: master Commit: c43d3964e35af1a786ad0e986e907792732fc9e8 URL: https://gitlab.winehq.org/wine/wine/-/commit/c43d3964e35af1a786ad0e986e90779...
Author: Rémi Bernon rbernon@codeweavers.com Date: Sun Jan 14 12:02:21 2024 +0100
winebus: Demote BusContainerId FIXME message to WARN.
---
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 b0252b438ea..2476e3a9cdb 100644 --- a/dlls/winebus.sys/main.c +++ b/dlls/winebus.sys/main.c @@ -543,7 +543,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; }