comctl32/tests: Add casts to avoid comparison of different int types.

This commit is contained in:
Gerald Pfeifer 2011-05-22 20:51:30 +02:00 committed by Alexandre Julliard
parent d73b27d806
commit 35707aee68
1 changed files with 4 additions and 3 deletions

View File

@ -1313,6 +1313,7 @@ static void test_TCM_SETITEMEXTRA(void)
static void test_TCS_OWNERDRAWFIXED(void)
{
LPARAM lparam, lparam2;
ULONG_PTR itemdata;
TCITEMA item;
HWND hTab;
BOOL ret;
@ -1335,9 +1336,9 @@ static void test_TCS_OWNERDRAWFIXED(void)
ShowWindow(hTab, SW_SHOW);
RedrawWindow(hTab, NULL, 0, RDW_UPDATENOW);
lparam = 0;
memset(&lparam, 0xde, 4);
ok(g_drawitem.itemData == lparam, "got %lx, expected %lx\n", g_drawitem.itemData, lparam);
itemdata = 0;
memset(&itemdata, 0xde, 4);
ok(g_drawitem.itemData == itemdata, "got %lx, expected %lx\n", g_drawitem.itemData, itemdata);
DestroyWindow(hTab);