Commit 5360780a authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msxml3: Avoid signed-unsigned integer comparisons.

parent 2976b634
......@@ -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))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment