Module: wine Branch: master Commit: 13136c6e23ce6343d97abec57e6173a7c3e9f08d URL: http://source.winehq.org/git/wine.git/?a=commit;h=13136c6e23ce6343d97abec57e...
Author: Francois Gouget fgouget@free.fr Date: Thu Jan 18 11:37:24 2007 +0100
usp10/tests: Use '%u' to print GetLastError().
---
dlls/usp10/tests/usp10.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/usp10/tests/usp10.c b/dlls/usp10/tests/usp10.c index 42a4da7..3bd6257 100644 --- a/dlls/usp10/tests/usp10.c +++ b/dlls/usp10/tests/usp10.c @@ -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()); } }