ntdll/tests: Add a trailing '\n' to an ok() call.

This commit is contained in:
Francois Gouget 2009-10-07 14:49:00 +02:00 committed by Alexandre Julliard
parent 305d4bfdd8
commit 7c5df85f51
1 changed files with 1 additions and 1 deletions

View File

@ -960,7 +960,7 @@ static void test_affinity(void)
status = pNtQueryInformationThread( GetCurrentThread(), ThreadBasicInformation, &tbi, sizeof(tbi), NULL );
ok( status == STATUS_SUCCESS, "Expected STATUS_SUCCESS, got %08x\n", status);
ok( tbi.AffinityMask == (1 << si.dwNumberOfProcessors) - 1,
"Unexpected thread affinity" );
"Unexpected thread affinity\n" );
}
START_TEST(info)