Commit e328a600 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

wineusb.sys: Fix the spelling of an ERR() message.

parent 950dac91
......@@ -641,7 +641,7 @@ static NTSTATUS usb_submit_urb(struct usb_device *device, IRP *irp)
transfer->flags = LIBUSB_TRANSFER_FREE_BUFFER | LIBUSB_TRANSFER_FREE_TRANSFER;
ret = libusb_submit_transfer(transfer);
if (ret < 0)
ERR("Failed to submit GET_DESRIPTOR transfer: %s\n", libusb_strerror(ret));
ERR("Failed to submit GET_DESCRIPTOR transfer: %s\n", libusb_strerror(ret));
return STATUS_PENDING;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment