From e674ede0857274871597f8509927f754067fe4a8 Mon Sep 17 00:00:00 2001 From: Juergen Schmied Date: Fri, 6 Nov 1998 15:23:43 +0000 Subject: [PATCH] Fixed wrong arg type. --- controls/menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controls/menu.c b/controls/menu.c index 682fe20a97f..a6110aa5ee4 100644 --- a/controls/menu.c +++ b/controls/menu.c @@ -3555,7 +3555,7 @@ void WINAPI EndMenu(void) HMENU16 WINAPI LookupMenuHandle( HMENU16 hmenu, INT16 id ) { HMENU32 hmenu32 = hmenu; - INT32 id32 = id; + UINT32 id32 = id; if (!MENU_FindItem( &hmenu32, &id32, MF_BYCOMMAND )) return 0; else return hmenu32; }