Commit af4324e4 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 96971ea3
......@@ -451,7 +451,7 @@ static void test_metadata_gAMA(void)
PropVariantClear(&id);
ok(value.vt == VT_UI4, "unexpected vt: %i\n", value.vt);
ok(value.ulVal == 33333, "unexpected value: %u\n", value.ulVal);
ok(U(value).ulVal == 33333, "unexpected value: %u\n", U(value).ulVal);
PropVariantClear(&value);
IWICMetadataReader_Release(reader);
......
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