summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vd_theora.c
diff options
context:
space:
mode:
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;