hhctrl.ocx: Avoid signed-unsigned integer comparisons

Andrew Talbot andrew.talbot at talbotville.com
Thu Jan 24 16:10:41 CST 2013


Changelog:
    hhctrl.ocx: Avoid signed-unsigned integer comparisons.

diff --git a/dlls/hhctrl.ocx/help.c b/dlls/hhctrl.ocx/help.c
index 5c922b3..05e6466 100644
--- a/dlls/hhctrl.ocx/help.c
+++ b/dlls/hhctrl.ocx/help.c
@@ -1825,7 +1825,7 @@ void ReleaseHelpViewer(HHInfo *info)
 HHInfo *CreateHelpViewer(HHInfo *info, LPCWSTR filename, HWND caller)
 {
     HHInfo *tmp_info;
-    int i;
+    unsigned int i;
 
     if(!info)
     {
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20130124/90173016/attachment.html>


More information about the wine-patches mailing list