atl: Fix a comparison between signed and unsigned.

This commit is contained in:
Michael Stefaniuc 2007-02-13 00:13:00 +01:00 committed by Alexandre Julliard
parent c6c68bf304
commit 90c0ffd45e
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ static HRESULT do_process_root_key(LPCOLESTR data, BOOL do_register)
LPCOLESTR iter = data;
strbuf buf;
HRESULT hres = S_OK;
int i;
unsigned int i;
strbuf_init(&buf);
hres = get_word(&iter, &buf);