[Ffmpeg-cvslog] CVS: ffmpeg cmdutils.c,1.8,1.9

Måns Rullgård CVS mru
Mon Dec 12 02:51:40 CET 2005


Update of /cvsroot/ffmpeg/ffmpeg
In directory mail:/var2/tmp/cvs-serv28116

Modified Files:
	cmdutils.c 
Log Message:
fix const warning


Index: cmdutils.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/cmdutils.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- cmdutils.c	11 Sep 2005 11:10:24 -0000	1.8
+++ cmdutils.c	12 Dec 2005 01:51:38 -0000	1.9
@@ -45,7 +45,7 @@
     }
 }
 
-static OptionDef* find_option(const OptionDef *po, const char *name){
+static const OptionDef* find_option(const OptionDef *po, const char *name){
     while (po->name != NULL) {
         if (!strcmp(name, po->name))
             break;





More information about the ffmpeg-cvslog mailing list