Commit 6797f15a authored by Alexandre Julliard's avatar Alexandre Julliard

user32: Fix a printf format warning.

parent 1486d851
......@@ -2036,7 +2036,7 @@ static void test_menu_resource_layout(void)
count = GetMenuItemCount(hmenu);
ok(count == sizeof(menu_data)/sizeof(menu_data[0]),
"expected %u menu items, got %u\n",
(UINT)sizeof(menu_data)/sizeof(menu_data[0]), count);
(UINT)(sizeof(menu_data)/sizeof(menu_data[0])), count);
for (i = 0; i < count; i++)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment