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

This commit is contained in:
Francois Gouget 2013-06-06 10:16:43 +02:00 committed by Alexandre Julliard
parent 6528aff97b
commit 1e53cb6483
1 changed files with 1 additions and 1 deletions

View File

@ -2048,7 +2048,7 @@ static void test_DuplicateHandle(void)
f = CreateFile("CONIN$", GENERIC_READ|GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0);
if (!is_console(f))
{
skip("DuplicateHandle on console handle");
skip("DuplicateHandle on console handle\n");
CloseHandle(f);
return;
}