mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
msdaps: Avoid signed-unsigned integer comparisons.
This commit is contained in:
parent
b8d081b0a8
commit
78d9ee8a1a
1 changed files with 2 additions and 2 deletions
|
@ -695,10 +695,10 @@ HRESULT CALLBACK IRowsetInfo_GetProperties_Proxy(IRowsetInfo* This, const ULONG
|
|||
|
||||
for(i = 0; i < cPropertyIDSets; i++)
|
||||
{
|
||||
int j;
|
||||
unsigned int j;
|
||||
TRACE("%d: %s %d props\n", i, debugstr_guid(&rgPropertyIDSets[i].guidPropertySet), rgPropertyIDSets[i].cPropertyIDs);
|
||||
for(j = 0; j < rgPropertyIDSets[i].cPropertyIDs; j++)
|
||||
TRACE("\t%d: prop id %d\n", j, rgPropertyIDSets[i].rgPropertyIDs[j]);
|
||||
TRACE("\t%u: prop id %d\n", j, rgPropertyIDSets[i].rgPropertyIDs[j]);
|
||||
}
|
||||
|
||||
hr = IRowsetInfo_RemoteGetProperties_Proxy(This, cPropertyIDSets, rgPropertyIDSets, pcPropertySets, prgPropertySets, &error);
|
||||
|
|
Loading…
Reference in a new issue