[MPlayer-cvslog] r33535 - trunk/libmpcodecs/vf_divtc.c

reimar subversion at mplayerhq.hu
Wed Jun 1 20:49:16 CEST 2011


Author: reimar
Date: Wed Jun  1 20:49:14 2011
New Revision: 33535

Log:
Add "const" to avoid compiler warning.

Modified:
   trunk/libmpcodecs/vf_divtc.c

Modified: trunk/libmpcodecs/vf_divtc.c
==============================================================================
--- trunk/libmpcodecs/vf_divtc.c	Wed Jun  1 16:38:03 2011	(r33534)
+++ trunk/libmpcodecs/vf_divtc.c	Wed Jun  1 20:49:14 2011	(r33535)
@@ -598,7 +598,8 @@ static void uninit(struct vf_instance *v
 static int vf_open(vf_instance_t *vf, char *args)
    {
    struct vf_priv_s *p;
-   char *filename="framediff.log", *ap, *q, *a;
+   const char *filename="framediff.log";
+   char *ap, *q, *a;
 
    if(args && !(args=strdup(args)))
       {


More information about the MPlayer-cvslog mailing list