Fix compiler warning.

This commit is contained in:
Hans Leidekker 2004-04-19 19:24:03 +00:00 committed by Alexandre Julliard
parent 769a4bb586
commit 4365bd2122
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}