Commit 8efa0fb0 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent bae59909
......@@ -765,8 +765,8 @@ static void test_GetDynamicTimeZoneInformation(void)
static ULONGLONG get_longlong_time(FILETIME *time)
{
ULARGE_INTEGER uli;
uli.LowPart = time->dwLowDateTime;
uli.HighPart = time->dwHighDateTime;
uli.u.LowPart = time->dwLowDateTime;
uli.u.HighPart = time->dwHighDateTime;
return uli.QuadPart;
}
......
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