diff options
author | Alex Converse <alex.converse@gmail.com> | 2012-02-20 00:42:33 -0800 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2012-02-21 09:47:07 -0800 |
commit | b0f29db5c2b8d1b7de2ccac815e33090e8c49cff (patch) | |
tree | 0d70e97046f81fcd84e8c11eec7947037e45f760 /libavutil | |
parent | e48a70e6da02cd5426b6340af70410bdfe27dfa7 (diff) | |
download | ffmpeg-b0f29db5c2b8d1b7de2ccac815e33090e8c49cff.tar.gz |
Mark mutable static data const where appropriate.
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/eval.c b/libavutil/eval.c index 9941ed7060..4d8ebf4f6e 100644 --- a/libavutil/eval.c +++ b/libavutil/eval.c @@ -543,13 +543,13 @@ int av_expr_parse_and_eval(double *d, const char *s, #undef printf #include <string.h> -static double const_values[] = { +static const double const_values[] = { M_PI, M_E, 0 }; -static const char *const_names[] = { +static const char *const const_names[] = { "PI", "E", 0 |