Commit 8e59bbb0 authored by Alexandre Julliard's avatar Alexandre Julliard

msxml3/tests: Avoid size_t in a trace.

parent 7ee63f00
...@@ -7258,7 +7258,7 @@ static void test_nodeTypedValue(void) ...@@ -7258,7 +7258,7 @@ static void test_nodeTypedValue(void)
if (entry->type == (VT_ARRAY|VT_UI1)) if (entry->type == (VT_ARRAY|VT_UI1))
{ {
ok(V_ARRAY(&value)->rgsabound[0].cElements == strlen(entry->value), ok(V_ARRAY(&value)->rgsabound[0].cElements == strlen(entry->value),
"incorrect array size, got %d, expected %d\n", V_ARRAY(&value)->rgsabound[0].cElements, strlen(entry->value)); "incorrect array size %d\n", V_ARRAY(&value)->rgsabound[0].cElements);
} }
if (entry->type != VT_BSTR) if (entry->type != VT_BSTR)
......
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