summaryrefslogtreecommitdiffstats
path: root/libavfilter
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2014-08-31 10:40:39 +0200
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2014-08-31 10:41:42 +0200
commit6d7aa437e1108dd8142ae5b850a00c109f95f07f (patch)
treeb7931bdde5fe76c9fce6970fa01ac014388b0739 /libavfilter
parent2ca7edda89bf9294fbdbfee3d503b551f0011da5 (diff)
downloadffmpeg-streaming-6d7aa437e1108dd8142ae5b850a00c109f95f07f.zip
ffmpeg-streaming-6d7aa437e1108dd8142ae5b850a00c109f95f07f.tar.gz
vf_drawtext: move "static const" before "struct".
This is consistent with all other occurrences. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_drawtext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c
index 29cdfbb..4fbb6c0 100644
--- a/libavfilter/vf_drawtext.c
+++ b/libavfilter/vf_drawtext.c
@@ -268,11 +268,11 @@ AVFILTER_DEFINE_CLASS(drawtext);
#define FT_ERRORDEF(e, v, s) { (e), (s) },
#define FT_ERROR_END_LIST { 0, NULL } };
-struct ft_error
+static const struct ft_error
{
int err;
const char *err_msg;
-} static const ft_errors[] =
+} ft_errors[] =
#include FT_ERRORS_H
#define FT_ERRMSG(e) ft_errors[e].err_msg
OpenPOWER on IntegriCloud