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

Francois Gouget fgouget at free.fr
Thu Jan 18 04:37:24 CST 2007


---
 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());
     }
 }
 
-- 
1.4.4.3




More information about the wine-patches mailing list