Browse code

vf_drawtext: move "static const" before "struct".

This is consistent with all other occurrences.

Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>

Reimar Döffinger authored on 2014/08/31 17:40:39
Showing 1 changed files
... ...
@@ -268,11 +268,11 @@ AVFILTER_DEFINE_CLASS(drawtext);
268 268
 #define FT_ERRORDEF(e, v, s) { (e), (s) },
269 269
 #define FT_ERROR_END_LIST { 0, NULL } };
270 270
 
271
-struct ft_error
271
+static const struct ft_error
272 272
 {
273 273
     int err;
274 274
     const char *err_msg;
275
-} static const ft_errors[] =
275
+} ft_errors[] =
276 276
 #include FT_ERRORS_H
277 277
 
278 278
 #define FT_ERRMSG(e) ft_errors[e].err_msg