Remove a useless cast

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25705 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2008-01-13 09:37:36 +00:00
parent 194c1219db
commit a66f248c25
1 changed files with 1 additions and 1 deletions

View File

@ -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;