mirror of https://github.com/mpv-player/mpv
Remove a useless cast
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25705 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
194c1219db
commit
a66f248c25
|
@ -130,7 +130,7 @@ DS_Filter* DS_FilterCreate(const char* dllname, const GUID* id,
|
|||
MemAllocator* tempAll;
|
||||
ALLOCATOR_PROPERTIES props,props1;
|
||||
HRESULT result;
|
||||
DS_Filter* This = (DS_Filter*) malloc(sizeof(DS_Filter));
|
||||
DS_Filter* This = malloc(sizeof(DS_Filter));
|
||||
if (!This)
|
||||
return NULL;
|
||||
|
||||
|
|
Loading…
Reference in New Issue