Commit 2df9129c authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 4b317fde
......@@ -837,7 +837,7 @@ static void append_file_test(void)
return;
}
iosb.Status = STATUS_PENDING;
U(iosb).Status = STATUS_PENDING;
iosb.Information = 0;
status = NtWriteFile(handle, NULL, NULL, NULL, &iosb,
......@@ -846,7 +846,7 @@ static void append_file_test(void)
if (status == STATUS_PENDING)
{
WaitForSingleObject( handle, INFINITE );
status = iosb.Status;
status = U(iosb).Status;
}
written = iosb.Information;
......
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