diff libmpcodecs/vf_divtc.c @ 33447:4506f91c0a06

Add "const" to avoid compiler warning.
author reimar
date Wed, 01 Jun 2011 18:49:14 +0000
parents 02214457c955
children 064be070d8c8
line wrap: on
line diff
--- a/libmpcodecs/vf_divtc.c	Wed Jun 01 14:38:03 2011 +0000
+++ b/libmpcodecs/vf_divtc.c	Wed Jun 01 18:49:14 2011 +0000
@@ -598,7 +598,8 @@
 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)))
       {