Signed-off-by: Andrew Eikum <aeikum(a)codeweavers.com> --- These three patches quiet down Wine dumping these ERRs and FIXMEs on every launch and exit when I have some USB device plugged in. dlls/wineusb.sys/wineusb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/wineusb.sys/wineusb.c b/dlls/wineusb.sys/wineusb.c index 55bd84ea30..d5ebe7693d 100644 --- a/dlls/wineusb.sys/wineusb.c +++ b/dlls/wineusb.sys/wineusb.c @@ -274,7 +274,7 @@ static NTSTATUS fdo_pnp(IRP *irp) } default: - FIXME("Unhandled minor function %#x.\n", stack->MinorFunction); + TRACE("Unhandled minor function %#x.\n", stack->MinorFunction); } IoSkipCurrentIrpStackLocation(irp); @@ -382,7 +382,7 @@ static NTSTATUS pdo_pnp(DEVICE_OBJECT *device_obj, IRP *irp) break; default: - FIXME("Unhandled minor function %#x.\n", stack->MinorFunction); + TRACE("Unhandled minor function %#x.\n", stack->MinorFunction); } irp->IoStatus.Status = ret; -- 2.26.2