user32/tests: GetMenuItemCount returns an INT which can be -1 (Coverity 543).

This commit is contained in:
Aric Stewart 2008-10-02 07:42:34 -05:00 committed by Alexandre Julliard
parent 52b2b5b7b0
commit 6aa6fc8a46
1 changed files with 1 additions and 1 deletions

View File

@ -2148,7 +2148,7 @@ static void test_menu_resource_layout(void)
{ MF_SEPARATOR, MF_GRAYED|MF_DISABLED, 8, "" }
};
HMENU hmenu;
UINT count, i;
INT count, i;
BOOL ret;
hmenu = LoadMenuIndirect(&menu_template);