mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
hhctrl.ocx: Avoid signed-unsigned integer comparisons.
This commit is contained in:
parent
6d1d7eedd9
commit
2e268d1914
1 changed files with 1 additions and 1 deletions
|
@ -1825,7 +1825,7 @@ void ReleaseHelpViewer(HHInfo *info)
|
||||||
HHInfo *CreateHelpViewer(HHInfo *info, LPCWSTR filename, HWND caller)
|
HHInfo *CreateHelpViewer(HHInfo *info, LPCWSTR filename, HWND caller)
|
||||||
{
|
{
|
||||||
HHInfo *tmp_info;
|
HHInfo *tmp_info;
|
||||||
int i;
|
unsigned int i;
|
||||||
|
|
||||||
if(!info)
|
if(!info)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue