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
This commit is contained in:
Baptiste Coudurier 2011-01-11 21:14:11 +00:00
parent c3024f9e7e
commit c961fb3cbb
1 changed files with 1 additions and 1 deletions

View File

@ -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 == ',') {