msxml3: Avoid signed-unsigned integer comparisons.

This commit is contained in:
Andrew Talbot 2013-02-19 22:24:44 +00:00 committed by Alexandre Julliard
parent 2976b6342f
commit 5360780a9b
2 changed files with 2 additions and 2 deletions

View file

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

View file

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