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

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Francois Gouget 2020-05-16 12:18:12 +02:00 committed by Alexandre Julliard
parent 950dac9104
commit e328a60017
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}