usbd.sys: Avoid signed-unsigned integer comparisons.

This commit is contained in:
Andrew Talbot 2013-02-26 22:16:05 +00:00 committed by Alexandre Julliard
parent 0159558560
commit ec128b7324

View file

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