Commit b23ab91e authored by Alexandre Julliard's avatar Alexandre Julliard

kernel32/tests: Avoid sizeof in a trace.

parent 7b38f204
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment