mirror of
https://github.com/reactos/wine.git
synced 2025-01-19 10:13:01 +00:00
msdmo: Remove superfluous pointer casts.
This commit is contained in:
parent
3b4bf2f6f2
commit
dfd821d6a9
@ -450,11 +450,11 @@ static HRESULT WINAPI IEnumDMO_fnQueryInterface(
|
||||
if(IsEqualIID(riid, &IID_IUnknown))
|
||||
*ppvObj = This;
|
||||
else if(IsEqualIID(riid, &IID_IEnumDMO))
|
||||
*ppvObj = (IEnumDMO*)This;
|
||||
*ppvObj = This;
|
||||
|
||||
if(*ppvObj)
|
||||
{
|
||||
IEnumDMO_fnAddRef((IEnumDMO*)*ppvObj);
|
||||
IEnumDMO_fnAddRef(*ppvObj);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user