mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
user32: Avoid signed-unsigned integer comparisons.
This commit is contained in:
parent
78b579dff2
commit
f3790542d5
1 changed files with 1 additions and 1 deletions
|
@ -4701,7 +4701,7 @@ static inline void set_menu_item_text( MENUITEM *menu, LPCWSTR text, BOOL unicod
|
||||||
*/
|
*/
|
||||||
static int MENU_depth( POPUPMENU *pmenu, int depth)
|
static int MENU_depth( POPUPMENU *pmenu, int depth)
|
||||||
{
|
{
|
||||||
int i;
|
UINT i;
|
||||||
MENUITEM *item;
|
MENUITEM *item;
|
||||||
int subdepth;
|
int subdepth;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue