From 2e268d1914254203cfc91d9f3c4b84d65945a3a0 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Thu, 24 Jan 2013 22:10:41 +0000 Subject: [PATCH] hhctrl.ocx: Avoid signed-unsigned integer comparisons. --- dlls/hhctrl.ocx/help.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/hhctrl.ocx/help.c b/dlls/hhctrl.ocx/help.c index 5c922b3aa83..05e64666598 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) {