mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
ole32: Fix a test in the WdtpInterfacePointer tests.
This commit is contained in:
parent
95b6167244
commit
5c53b52c5a
@ -455,8 +455,8 @@ static void test_marshal_WdtpInterfacePointer(void)
|
||||
wireip += sizeof(DWORD);
|
||||
ok(*(DWORD *)wireip == 0x1, "wireip + 0xc should be 0x1 instead of 0x%08x\n", *(DWORD *)wireip);
|
||||
wireip += sizeof(DWORD);
|
||||
iid = (const IID *)buffer;
|
||||
ok(!IsEqualIID(iid, &IID_IUnknown),
|
||||
iid = (const IID *)wireip;
|
||||
ok(IsEqualIID(iid, &IID_IUnknown),
|
||||
"wireip + 0x10 should be IID_IUnknown instead of {%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}\n",
|
||||
iid->Data1, iid->Data2, iid->Data3,
|
||||
iid->Data4[0], iid->Data4[1], iid->Data4[2], iid->Data4[3],
|
||||
|
Loading…
Reference in New Issue
Block a user