Commit ec128b73 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

usbd.sys: Avoid signed-unsigned integer comparisons.

parent 01595585
......@@ -105,7 +105,7 @@ PURB WINAPI USBD_CreateConfigurationRequestEx(
interfaceInfo = &urb->u.UrbSelectConfiguration.Interface;
for (interfaceEntry = InterfaceList; interfaceEntry->InterfaceDescriptor; interfaceEntry++)
{
int i;
ULONG i;
USB_INTERFACE_DESCRIPTOR *currentInterface;
USB_ENDPOINT_DESCRIPTOR *endpointDescriptor;
interfaceInfo->InterfaceNumber = interfaceEntry->InterfaceDescriptor->bInterfaceNumber;
......
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