Module: wine Branch: master Commit: 2e268d1914254203cfc91d9f3c4b84d65945a3a0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2e268d1914254203cfc91d9f3c...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Thu Jan 24 22:10:41 2013 +0000
hhctrl.ocx: Avoid signed-unsigned integer comparisons.
---
dlls/hhctrl.ocx/help.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
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) {