hhctrl.ocx: Sign-compare warning fix

Andrew Talbot andrew.talbot at talbotville.com
Mon Aug 4 16:39:20 CDT 2008


Changelog:
    hhctrl.ocx: Sign-compare warning fix.

diff --git a/dlls/hhctrl.ocx/chm.c b/dlls/hhctrl.ocx/chm.c
index 699fa04..e8d036b 100644
--- a/dlls/hhctrl.ocx/chm.c
+++ b/dlls/hhctrl.ocx/chm.c
@@ -413,7 +413,7 @@ CHMInfo *CloseCHM(CHMInfo *chm)
         IStream_Release(chm->strings_stream);
 
     if(chm->strings_size) {
-        int i;
+        DWORD i;
 
         for(i=0; i<chm->strings_size; i++)
             heap_free(chm->strings[i]);



More information about the wine-patches mailing list