summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2011-01-11 21:14:11 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2011-01-11 21:14:11 +0000
commitc961fb3cbbf3085400b083d161c334dfc5dc2f7d (patch)
tree7044a9974e5e4581facb16e79d8ce3f99fc84a92 /ffmpeg.c
parentc3024f9e7e4cc1a0dcedbdf96e08826d7a260cb8 (diff)
Change 'arg' type in parse_meta_type, fix warning:
ffmpeg.c: In function ‘parse_meta_type’: ffmpeg.c:3323:13: warning: assignment discards qualifiers from pointer target type Originally committed as revision 26312 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
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 == ',') {