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

oldstable
Francois Gouget 2015-04-11 16:28:19 +02:00 committed by Alexandre Julliard
parent 96971ea36d
commit af4324e433
1 changed files with 1 additions and 1 deletions

View File

@ -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);