kernel32/tests: Add a trailing linefeed to an ok() message.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2021-04-30 14:35:48 +02:00 committed by Alexandre Julliard
parent 1b7c292d62
commit 660b32b81e
1 changed files with 1 additions and 1 deletions

View File

@ -3857,7 +3857,7 @@ static void test_GetSystemCpuSetInformation(void)
ok(ret && GetLastError() == 0xdeadbeef, "Got unexpected ret %#x, GetLastError() %u.\n", ret, GetLastError());
ok(size == expected_size, "Got unexpected size %u.\n", size);
ok(!memcmp(info, info_nt, expected_size), "Info does not match NtQuerySystemInformationEx().");
ok(!memcmp(info, info_nt, expected_size), "Info does not match NtQuerySystemInformationEx().\n");
heap_free(info_nt);
heap_free(info);