shdocvw: Sign-compare warnings fix.

This commit is contained in:
Andrew Talbot 2008-09-08 19:29:55 +01:00 committed by Alexandre Julliard
parent 38b0573543
commit d23fc94fd6
2 changed files with 2 additions and 2 deletions

View File

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

View File

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