kernel32/tests: Avoid sizeof in a trace.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2016-01-20 16:42:45 +09:00
parent 7b38f20458
commit b23ab91e66
1 changed files with 1 additions and 1 deletions

View File

@ -4678,7 +4678,7 @@ static void test_GetSystemPreferredUILanguages(void)
buffer = HeapAlloc(GetProcessHeap(), 0, size_buffer * sizeof(WCHAR));
if (!buffer)
{
skip("Failed to allocate memory with size %d\n", size_buffer * sizeof(WCHAR));
skip("Failed to allocate memory for %d chars\n", size_buffer);
return;
}