mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
msxml3: Avoid signed-unsigned integer comparisons.
This commit is contained in:
parent
2976b6342f
commit
5360780a9b
2 changed files with 2 additions and 2 deletions
|
@ -3245,7 +3245,7 @@ static HRESULT WINAPI ConnectionPoint_Advise(IConnectionPoint *iface, IUnknown *
|
|||
ConnectionPoint *This = impl_from_IConnectionPoint(iface);
|
||||
IUnknown *sink;
|
||||
HRESULT hr;
|
||||
int i;
|
||||
DWORD i;
|
||||
|
||||
TRACE("(%p)->(%p %p)\n", This, unk_sink, cookie);
|
||||
|
||||
|
|
|
@ -98,7 +98,7 @@ static const struct clsid_version_t clsid_versions_table[] =
|
|||
|
||||
static MSXML_VERSION get_msxml_version(const GUID *clsid)
|
||||
{
|
||||
int i;
|
||||
unsigned int i;
|
||||
|
||||
for (i = 0; i < sizeof(clsid_versions_table)/sizeof(struct clsid_version_t); i++)
|
||||
if (IsEqualGUID(clsid, clsid_versions_table[i].clsid))
|
||||
|
|
Loading…
Reference in a new issue