comctl32/tests: Fix compilation on systems that don't support nameless unions.

This commit is contained in:
Francois Gouget 2011-02-07 12:30:37 +01:00 committed by Alexandre Julliard
parent 26380e1720
commit fc55c4a2d5
1 changed files with 2 additions and 2 deletions

View File

@ -1425,14 +1425,14 @@ static void test_htreeitem_layout(void)
ins.hParent = hChild;
ins.hInsertAfter = TVI_FIRST;
ins.item.mask = 0;
U(ins).item.mask = 0;
item1 = TreeView_InsertItem(hTree, &ins);
check_item(item1, hChild, 0, 0);
ins.hParent = hRoot;
ins.hInsertAfter = TVI_FIRST;
ins.item.mask = 0;
U(ins).item.mask = 0;
item2 = TreeView_InsertItem(hTree, &ins);
check_item(item2, hRoot, hChild, 0);