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

msi/tests: Fix compilation on systems that don't support nameless unions or structs.

parent 6e76c894
...@@ -9666,7 +9666,7 @@ static void test_installprops(void) ...@@ -9666,7 +9666,7 @@ static void test_installprops(void)
if (pGetSystemInfo) if (pGetSystemInfo)
{ {
pGetSystemInfo(&si); pGetSystemInfo(&si);
if (si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64) if (S(U(si)).wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64)
{ {
buf[0] = 0; buf[0] = 0;
size = MAX_PATH; size = MAX_PATH;
......
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