oleaut32/tests: Fix compilation on systems that don't support nameless structs.

This commit is contained in:
Francois Gouget 2014-03-03 18:43:17 +01:00 committed by Alexandre Julliard
parent e32672f2d7
commit 376953e00a
1 changed files with 2 additions and 2 deletions

View File

@ -433,8 +433,8 @@ static void test_font_events_disp(void)
}
case DISPID_FONT_SIZE:
V_VT(&vararg) = VT_CY;
V_CY(&vararg).Lo = 25;
V_CY(&vararg).Hi = 0;
S(V_CY(&vararg)).Lo = 25;
S(V_CY(&vararg)).Hi = 0;
break;
case DISPID_FONT_BOLD:
V_VT(&vararg) = VT_BOOL;