Commit 4365bd21 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

Fix compiler warning.

parent 769a4bb5
......@@ -129,7 +129,8 @@ HRESULT WINAPI StdProxy_Construct(REFIID riid,
/* I can't find any other way to detect stubless proxies than this hack */
if (!IsEqualGUID(vtbl->header.piid, riid)) {
stubless = *((const void **)vtbl)++;
stubless = *(const void **)vtbl;
vtbl = (CInterfaceProxyVtbl *)((const void **)vtbl + 1);
TRACE("stubless=%p\n", stubless);
}
......
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