Commit aaa680bf authored by Alexandre Julliard's avatar Alexandre Julliard

ole32/tests: Fix array indices in a trace.

parent 7f810293
...@@ -742,8 +742,8 @@ static void test_cf_dataobject(IDataObject *data) ...@@ -742,8 +742,8 @@ static void test_cf_dataobject(IDataObject *data)
cfs_seen[count] = fmt.cfFormat; cfs_seen[count] = fmt.cfFormat;
ok(fmt_ptr->first_use_of_cf != seen_cf, "got %08x expected %08x\n", ok(fmt_ptr->first_use_of_cf != seen_cf, "got %08x expected %08x\n",
fmt_ptr->first_use_of_cf, !seen_cf); fmt_ptr->first_use_of_cf, !seen_cf);
ok(fmt_ptr->res[0] == 0, "got %08x\n", fmt_ptr->res[1]); ok(fmt_ptr->res[0] == 0, "got %08x\n", fmt_ptr->res[0]);
ok(fmt_ptr->res[1] == 0, "got %08x\n", fmt_ptr->res[2]); ok(fmt_ptr->res[1] == 0, "got %08x\n", fmt_ptr->res[1]);
if(fmt.ptd) if(fmt.ptd)
{ {
DVTARGETDEVICE *target; DVTARGETDEVICE *target;
......
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