ole32/tests: Fix array indices in a trace.

This commit is contained in:
Alexandre Julliard 2013-05-21 14:57:53 +02:00
parent 7f810293b7
commit aaa680bfda
1 changed files with 2 additions and 2 deletions

View File

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