mirror of
https://github.com/reactos/wine.git
synced 2024-12-01 07:30:37 +00:00
windowscodecs/tests: Fix compilation on systems that don't support nameless unions.
This commit is contained in:
parent
96971ea36d
commit
af4324e433
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user