mirror of
https://github.com/reactos/wine.git
synced 2025-02-19 20:31:35 +00:00
msxml3: Avoid signed-unsigned integer comparisons.
This commit is contained in:
parent
2976b6342f
commit
5360780a9b
@ -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…
x
Reference in New Issue
Block a user