diff mencoder.c @ 31923:8c6e90c5fcc4

Remove pointless casts.
author reimar
date Sat, 21 Aug 2010 11:36:18 +0000
parents c406383caa61
children 6e0b5a97e00f
line wrap: on
line diff
--- a/mencoder.c	Sat Aug 21 11:33:33 2010 +0000
+++ b/mencoder.c	Sat Aug 21 11:36:18 2010 +0000
@@ -1033,7 +1033,7 @@
       char* vf_arg[] = {"auto", "1", NULL};
       vf_instance_t* vf_ass = vf_open_filter(sh_video->vfilter,"ass",vf_arg);
       if (vf_ass)
-        sh_video->vfilter=(void*)vf_ass;
+        sh_video->vfilter=vf_ass;
       else
         mp_msg(MSGT_CPLAYER,MSGL_ERR, "ASS: cannot add video filter\n");
     }