Commit 0b562718 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/f_sendcmd: make const arrays static const

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 148310ca
......@@ -39,7 +39,7 @@
static inline char *make_command_flags_str(AVBPrint *pbuf, int flags)
{
const char *flag_strings[] = { "enter", "leave" };
static const char * const flag_strings[] = { "enter", "leave" };
int i, is_first = 1;
av_bprint_init(pbuf, 0, AV_BPRINT_SIZE_AUTOMATIC);
......
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