kernel32/tests: Avoid sizeof in a trace.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7b38f20458
commit
b23ab91e66
@ -4678,7 +4678,7 @@ static void test_GetSystemPreferredUILanguages(void)
|
|||||||
buffer = HeapAlloc(GetProcessHeap(), 0, size_buffer * sizeof(WCHAR));
|
buffer = HeapAlloc(GetProcessHeap(), 0, size_buffer * sizeof(WCHAR));
|
||||||
if (!buffer)
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user