rpcrt4: Cast-qual warnings fix.

This commit is contained in:
Andrew Talbot 2006-11-11 14:57:53 +00:00 committed by Alexandre Julliard
parent b011a4eecd
commit fcb5bc6a1f
1 changed files with 1 additions and 1 deletions

View File

@ -812,7 +812,7 @@ LONG_PTR WINAPIV NdrClientCall2(PMIDL_STUB_DESC pStubDesc, PFORMAT_STRING pForma
if (pProcHeader->Oi_flags & RPC_FC_PROC_OIF_OBJECT)
{
/* object is always the first argument */
This = **(void ***)(&pFormat+1);
This = **(void *const **)(&pFormat+1);
NdrProxyInitialize(This, &rpcMsg, &stubMsg, pStubDesc, procedure_number);
}
else