Alexandre Julliard : kernel32/tests: Avoid size_t in traces.
Module: wine Branch: master Commit: d916ce2fc9c068c91439f1a134d423b0ef8c411d URL: http://source.winehq.org/git/wine.git/?a=commit;h=d916ce2fc9c068c91439f1a134... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Wed Sep 2 11:53:06 2009 +0200 kernel32/tests: Avoid size_t in traces. --- dlls/kernel32/tests/locale.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/kernel32/tests/locale.c b/dlls/kernel32/tests/locale.c index ca1fb5a..fe54907 100644 --- a/dlls/kernel32/tests/locale.c +++ b/dlls/kernel32/tests/locale.c @@ -1802,7 +1802,7 @@ static void test_FoldStringA(void) { ok(ret == 2 || ret == lstrlenA(foldczone_special[j].dst) + 1, "Expected ret == 2 or %d, got %d, error %d\n", - strlen(foldczone_special[j].dst) + 1, ret, GetLastError()); + lstrlenA(foldczone_special[j].dst) + 1, ret, GetLastError()); ok(src[0] == dst[0] || lstrcmpA(foldczone_special[j].dst, dst) == 0, "MAP_FOLDCZONE: string mismatch for 0x%02x\n", (unsigned char)src[0]);
participants (1)
-
Alexandre Julliard