Skip to content
Snippets Groups Projects
Commit 0b562718 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avfilter/f_sendcmd: make const arrays static const

parent 148310ca
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment