diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-01-04 01:52:58 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-01-07 11:02:13 +0100 |
commit | e869d08cbceee27f08e77eb54eef93740f5df00b (patch) | |
tree | ee2cb421bc10f4dc4f417c7a90941a154c69307c /cmdutils.c | |
parent | ceef1ee7674f21824a3392c654465b43b06c94fe (diff) | |
download | ffmpeg-e869d08cbceee27f08e77eb54eef93740f5df00b.tar.gz |
cmdutils: make this_year extern, so it can be referenced from other .o files
Required by a pending change in ffprobe.
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 0ab98e85b7..36e472a705 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -54,7 +54,7 @@ struct SwsContext *sws_opts; AVDictionary *format_opts, *codec_opts; -static const int this_year = 2012; +const int this_year = 2012; static FILE *report_file; |