Commit 90c0ffd4 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

atl: Fix a comparison between signed and unsigned.

parent c6c68bf3
......@@ -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);
......
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