Commit 13136c6e authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

usp10/tests: Use '%u' to print GetLastError().

parent 8c613a79
......@@ -1212,7 +1212,7 @@ static void test_digit_substitution(void)
for (i = 0; i < sizeof(groups)/sizeof(groups[0]); i++)
{
ret = pEnumLanguageGroupLocalesA(enum_proc, groups[i], 0, 0);
ok(ret, "EnumLanguageGroupLocalesA failed unexpectedly: 0x%08x\n", GetLastError());
ok(ret, "EnumLanguageGroupLocalesA failed unexpectedly: %u\n", GetLastError());
}
}
......
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