1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-23 21:54:53 +02:00

Simplify show_banner() so that it does not require arguments, similar

to what was previously done with show_version().
patch by Stefano Sabatini, stefano.sabatini-lala poste it

Originally committed as revision 13526 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini
2008-05-29 08:48:51 +00:00
committed by Diego Biurrun
parent 9667a2d268
commit ea9c581f61
5 changed files with 13 additions and 10 deletions

View File

@@ -196,7 +196,7 @@ void print_error(const char *filename, int err)
}
}
void show_banner(const char *program_name, int program_birth_year)
void show_banner(void)
{
fprintf(stderr, "%s version " FFMPEG_VERSION ", Copyright (c) %d-2008 Fabrice Bellard, et al.\n",
program_name, program_birth_year);