mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
usbd.sys: Avoid signed-unsigned integer comparisons.
This commit is contained in:
parent
0159558560
commit
ec128b7324
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue