diff options
author | Diego Elio Pettenò <flameeyes@gmail.com> | 2011-01-24 23:36:12 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-24 23:44:58 +0000 |
commit | 3568853f63e1ab8ff1fc0773a132d14187a0e2d8 (patch) | |
tree | 8afb56c5d3fc5f88d82a701cd19955e4fee21356 /cmdutils.c | |
parent | 82e1f217f276b4b3fda1f89a836126275a97ca9b (diff) | |
download | ffmpeg-3568853f63e1ab8ff1fc0773a132d14187a0e2d8.tar.gz |
Make this_year static to cmdutils.c
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdutils.c b/cmdutils.c index 295d10798a..58fe85cfda 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -55,7 +55,7 @@ AVCodecContext *avcodec_opts[AVMEDIA_TYPE_NB]; AVFormatContext *avformat_opts; struct SwsContext *sws_opts; -const int this_year = 2011; +static const int this_year = 2011; void init_opts(void) { |