kernel32/tests: Avoid size_t in traces.

This commit is contained in:
Alexandre Julliard 2009-09-02 11:53:06 +02:00
parent 838823b008
commit d916ce2fc9

View file

@ -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]);