avutil/parseutils: mark args as static const

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2016-03-24 19:31:02 +01:00
parent f707042c93
commit 54f43984e1
1 changed files with 1 additions and 1 deletions

View File

@ -940,7 +940,7 @@ static void test_av_get_known_color_name(void)
static void test_av_find_info_tag(void)
{
char args[] = "?tag1=val1&tag2=val2&tag3=val3&tag41=value 41&tag42=random1";
static const char args[] = "?tag1=val1&tag2=val2&tag3=val3&tag41=value 41&tag42=random1";
static const char *tags[] = {"tag1", "tag2", "tag3", "tag4", "tag41", "41", "random1"};
char buff[16];
int i;