qmgr: Remove superfluous pointer casts.
This commit is contained in:
parent
4be41680a3
commit
0fed8b992f
|
@ -193,7 +193,7 @@ static DWORD CALLBACK copyProgressCallback(LARGE_INTEGER totalSize,
|
|||
HANDLE dstFile,
|
||||
LPVOID obj)
|
||||
{
|
||||
BackgroundCopyFileImpl *file = (BackgroundCopyFileImpl *) obj;
|
||||
BackgroundCopyFileImpl *file = obj;
|
||||
BackgroundCopyJobImpl *job = file->owner;
|
||||
ULONG64 diff;
|
||||
|
||||
|
|
|
@ -138,7 +138,7 @@ BackgroundCopyManagerImpl globalMgr = {
|
|||
HRESULT BackgroundCopyManagerConstructor(IUnknown *pUnkOuter, LPVOID *ppObj)
|
||||
{
|
||||
TRACE("(%p,%p)\n", pUnkOuter, ppObj);
|
||||
*ppObj = (IBackgroundCopyManager *) &globalMgr;
|
||||
*ppObj = &globalMgr;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue