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

This commit is contained in:
Francois Gouget 2008-09-05 13:15:04 +02:00 committed by Alexandre Julliard
parent 758c453ff1
commit d8914673ba
1 changed files with 1 additions and 1 deletions

View File

@ -862,7 +862,7 @@ static void test_DeleteFileW( void )
ret = GetTempPathW(MAX_PATH, pathW);
if (ret + sizeof(dirW)/sizeof(WCHAR)-1 + sizeof(subdirW)/sizeof(WCHAR)-1 >= MAX_PATH)
{
ok(0, "MAX_PATH exceeded in constructing paths");
ok(0, "MAX_PATH exceeded in constructing paths\n");
return;
}
lstrcatW(pathW, dirW);