Commit 376953e0 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent e32672f2
......@@ -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;
......
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