user32: Avoid signed-unsigned integer comparisons.

This commit is contained in:
Andrew Talbot 2013-03-14 21:04:24 +00:00 committed by Alexandre Julliard
parent 78b579dff2
commit f3790542d5

View file

@ -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)
{
int i;
UINT i;
MENUITEM *item;
int subdepth;