Browse code

Make this_year static to cmdutils.c

Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 3568853f63e1ab8ff1fc0773a132d14187a0e2d8)

Diego Elio Pettenò authored on 2011/01/25 08:36:12
Showing 2 changed files
... ...
@@ -55,7 +55,7 @@ AVCodecContext *avcodec_opts[AVMEDIA_TYPE_NB];
55 55
 AVFormatContext *avformat_opts;
56 56
 struct SwsContext *sws_opts;
57 57
 
58
-const int this_year = 2011;
58
+static const int this_year = 2011;
59 59
 
60 60
 void init_opts(void)
61 61
 {
... ...
@@ -37,8 +37,6 @@ extern const char program_name[];
37 37
  */
38 38
 extern const int program_birth_year;
39 39
 
40
-extern const int this_year;
41
-
42 40
 extern const char **opt_names;
43 41
 extern AVCodecContext *avcodec_opts[AVMEDIA_TYPE_NB];
44 42
 extern AVFormatContext *avformat_opts;