Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-11-26 13:03:32 +0400
committerStefano Sabatini <stefasab@gmail.com>2013-11-26 13:03:32 +0400
commit8bf7ea8ac2104525e60cfd68097deb23430a0155 (patch)
tree29803370b48d8891b7ffde1af33db2871b59a359 /ffprobe.c
parent4c4710a745ae484d1a17288f141c96fdd664ec73 (diff)
cmdutils: remove this_year constant, use CONFIG_THIS_YEAR instead
Simplify.
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffprobe.c b/ffprobe.c
index 1842452195..d124d4eb01 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -2422,7 +2422,7 @@ static void ffprobe_show_program_version(WriterContext *w)
writer_print_section_header(w, SECTION_ID_PROGRAM_VERSION);
print_str("version", FFMPEG_VERSION);
print_fmt("copyright", "Copyright (c) %d-%d the FFmpeg developers",
- program_birth_year, this_year);
+ program_birth_year, CONFIG_THIS_YEAR);
print_str("build_date", __DATE__);
print_str("build_time", __TIME__);
print_str("compiler_ident", CC_IDENT);