Commit db4918b7 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/tedcaptionsdec: make const arrays static const

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0b562718
......@@ -153,7 +153,8 @@ static int parse_label(AVIOContext *pb, int *cur_byte, AVBPrint *bp)
static int parse_boolean(AVIOContext *pb, int *cur_byte, int *result)
{
const char *text[] = { "false", "true" }, *p;
static const char * const text[] = { "false", "true" };
const char *p;
int i;
skip_spaces(pb, cur_byte);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment