Commit 4238c9bb authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Vitaly Lipatov

rpcrt4: Avoid implicit cast of interface pointer.

parent 2f7005b6
......@@ -49,7 +49,7 @@ static LONG WINAPI stub_filter(EXCEPTION_POINTERS *eptr)
static inline cstdstubbuffer_delegating_t *impl_from_delegating( IRpcStubBuffer *iface )
{
return CONTAINING_RECORD(iface, cstdstubbuffer_delegating_t, stub_buffer);
return CONTAINING_RECORD((void *)iface, cstdstubbuffer_delegating_t, stub_buffer);
}
HRESULT CStdStubBuffer_Construct(REFIID riid,
......
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