diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-11-26 10:03:32 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-11-26 10:03:32 +0100 |
commit | 8bf7ea8ac2104525e60cfd68097deb23430a0155 (patch) | |
tree | 29803370b48d8891b7ffde1af33db2871b59a359 /ffprobe.c | |
parent | 4c4710a745ae484d1a17288f141c96fdd664ec73 (diff) | |
download | ffmpeg-8bf7ea8ac2104525e60cfd68097deb23430a0155.tar.gz |
cmdutils: remove this_year constant, use CONFIG_THIS_YEAR instead
Simplify.
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |