summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vd_theora.c
diff options
context:
space:
mode:
authorreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-02 08:17:07 +0000
committerreynaldo <reynaldo@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-02 08:17:07 +0000
commit3afd65b3afd338a32af0df8c8f0fdd4d2649c74e (patch)
tree8ee5d6fc8ccb7bc3f69d49a496f434a27af3c1e5 /libmpcodecs/vd_theora.c
parent9d9a15d18572d1450fd8fef495be3629bf85c995 (diff)
downloadmpv-3afd65b3afd338a32af0df8c8f0fdd4d2649c74e.tar.bz2
mpv-3afd65b3afd338a32af0df8c8f0fdd4d2649c74e.tar.xz
rm unnecesary casts from void* - part 3
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18884 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vd_theora.c')
-rw-r--r--libmpcodecs/vd_theora.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/vd_theora.c b/libmpcodecs/vd_theora.c
index de9d478c62..6bf1248155 100644
--- a/libmpcodecs/vd_theora.c
+++ b/libmpcodecs/vd_theora.c
@@ -64,7 +64,7 @@ static int init(sh_video_t *sh){
/* this is not a loop, just a context, from which we can break on error */
do
{
- context = (theora_struct_t *)calloc (sizeof (theora_struct_t), 1);
+ context = calloc (sizeof (theora_struct_t), 1);
sh->context = context;
if (!context)
break;