Module: wine Branch: master Commit: 90c0ffd45ec4ee655405977cc27bd4a5b118f745 URL: http://source.winehq.org/git/wine.git/?a=commit;h=90c0ffd45ec4ee655405977cc2...
Author: Michael Stefaniuc mstefani@redhat.de Date: Tue Feb 13 00:13:00 2007 +0100
atl: Fix a comparison between signed and unsigned.
---
dlls/atl/registrar.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/atl/registrar.c b/dlls/atl/registrar.c index 612ebda..6fa2fbd 100644 --- a/dlls/atl/registrar.c +++ b/dlls/atl/registrar.c @@ -360,7 +360,7 @@ static HRESULT do_process_root_key(LPCOL LPCOLESTR iter = data; strbuf buf; HRESULT hres = S_OK; - int i; + unsigned int i;
strbuf_init(&buf); hres = get_word(&iter, &buf);