Commit 07a7c1f8 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

itss: Remove some superfluous pointer casts.

parent 4eaaa913
......@@ -363,7 +363,7 @@ static HRESULT ITSS_create(IUnknown *pUnkOuter, LPVOID *ppObj)
its->ref = 1;
TRACE("-> %p\n", its);
*ppObj = (LPVOID) its;
*ppObj = its;
ITSS_LockModule();
return S_OK;
......
......@@ -473,7 +473,7 @@ HRESULT ITS_IParseDisplayName_create(IUnknown *pUnkOuter, LPVOID *ppObj)
its->ref = 1;
TRACE("-> %p\n", its);
*ppObj = (LPVOID) its;
*ppObj = its;
ITSS_LockModule();
return S_OK;
......
......@@ -47,7 +47,7 @@ typedef struct {
} ITSProtocol;
#define PROTOCOL(x) ((IInternetProtocol*) &(x)->lpInternetProtocolVtbl)
#define PROTINFO(x) ((IInternetProtocolInfo*) &(x)->lpInternetProtocolInfoVtbl)
#define PROTINFO(x) (&(x)->lpInternetProtocolInfoVtbl)
static void release_chm(ITSProtocol *This)
{
......
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