From c961fb3cbbf3085400b083d161c334dfc5dc2f7d Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Tue, 11 Jan 2011 21:14:11 +0000 Subject: [PATCH] =?UTF-8?q?Change=20'arg'=20type=20in=20parse=5Fmeta=5Ftyp?= =?UTF-8?q?e,=20fix=20warning:=20ffmpeg.c:=20In=20function=20=E2=80=98pars?= =?UTF-8?q?e=5Fmeta=5Ftype=E2=80=99:=20ffmpeg.c:3323:13:=20warning:=20assi?= =?UTF-8?q?gnment=20discards=20qualifiers=20from=20pointer=20target=20type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 26312 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index 08a50d541b..05972ffb2e 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2984,7 +2984,7 @@ static void opt_map(const char *arg) } } -static void parse_meta_type(const char *arg, char *type, int *index, char **endptr) +static void parse_meta_type(char *arg, char *type, int *index, char **endptr) { *endptr = arg; if (*arg == ',') {