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

oldstable
Francois Gouget 2007-11-20 13:48:15 +01:00 committed by Alexandre Julliard
parent 5f1416ef2b
commit 10e738f236
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,7 @@ static void test_iocp_fileio(HANDLE h)
NTSTATUS res = pNtSetInformationFile( hPipeSrv, &iosb, &fci, sizeof(fci), FileCompletionInformation );
ok( res == STATUS_SUCCESS, "NtSetInformationFile failed: %x\n", res );
ok( iosb.Status == STATUS_SUCCESS, "iosb.Status invalid: %x\n", iosb.Status );
ok( U(iosb).Status == STATUS_SUCCESS, "iosb.Status invalid: %x\n", U(iosb).Status );
count = get_pending_msgs(h);
ok( !count, "Unexpected msg count: %ld\n", count );