Mercurial > mplayer.hg
changeset 25677:b3f780273cb1
Remove a useless cast
author | reimar |
---|---|
date | Sun, 13 Jan 2008 09:37:36 +0000 |
parents | a721f266b21b |
children | ebf1c7d24ca2 |
files | loader/dshow/DS_Filter.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/loader/dshow/DS_Filter.c Sun Jan 13 09:34:43 2008 +0000 +++ b/loader/dshow/DS_Filter.c Sun Jan 13 09:37:36 2008 +0000 @@ -130,7 +130,7 @@ 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;