Commit d23fc94f authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

shdocvw: Sign-compare warnings fix.

parent 38b05735
...@@ -286,7 +286,7 @@ static void ConnectionPoint_Create(REFIID riid, ConnectionPoint **cp, ...@@ -286,7 +286,7 @@ static void ConnectionPoint_Create(REFIID riid, ConnectionPoint **cp,
static void ConnectionPoint_Destroy(ConnectionPoint *This) static void ConnectionPoint_Destroy(ConnectionPoint *This)
{ {
int i; DWORD i;
for(i=0; i<This->sinks_size; i++) { for(i=0; i<This->sinks_size; i++) {
if(This->sinks[i]) if(This->sinks[i])
......
...@@ -215,7 +215,7 @@ static HRESULT register_server(BOOL doregister) ...@@ -215,7 +215,7 @@ static HRESULT register_server(BOOL doregister)
STRTABLEA strtable; STRTABLEA strtable;
STRENTRYA pse[14]; STRENTRYA pse[14];
static CLSID const *clsids[14]; static CLSID const *clsids[14];
int i = 0; unsigned int i = 0;
HRESULT hres; HRESULT hres;
INF_SET_CLSID(CUrlHistory); INF_SET_CLSID(CUrlHistory);
......
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