kernel32/tests: Add a trailing '\n' to an ok() call.
This commit is contained in:
parent
758c453ff1
commit
d8914673ba
|
@ -862,7 +862,7 @@ static void test_DeleteFileW( void )
|
||||||
ret = GetTempPathW(MAX_PATH, pathW);
|
ret = GetTempPathW(MAX_PATH, pathW);
|
||||||
if (ret + sizeof(dirW)/sizeof(WCHAR)-1 + sizeof(subdirW)/sizeof(WCHAR)-1 >= MAX_PATH)
|
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;
|
return;
|
||||||
}
|
}
|
||||||
lstrcatW(pathW, dirW);
|
lstrcatW(pathW, dirW);
|
||||||
|
|
Loading…
Reference in New Issue