aboutsummaryrefslogtreecommitdiffstats
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2004-07-01 03:34:49 +0000
committerMike Melanson <mike@multimedia.cx>2004-07-01 03:34:49 +0000
commitda1da890441595da69df733dad7eb54a400aa21a (patch)
tree4c7421872ef06ee71964c68e009626e8c3fb951d /ffmpeg.c
parentf6fa7a6cf5e0f06d729f617615631bc6aaf17c99 (diff)
downloadffmpeg-da1da890441595da69df733dad7eb54a400aa21a.tar.gz
use a more portable version macro
Originally committed as revision 3281 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index dc200bebcf..2222a5f424 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -3802,8 +3802,7 @@ static void show_banner(void)
LIBAVCODEC_BUILD);
printf(" built on " __DATE__ " " __TIME__);
#ifdef __GNUC__
- printf(", using gcc %d.%d.%d\n",
- __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__);
+ printf(", gcc: %s\n", __VERSION__);
#else
printf(", using a non-gcc compiler\n");
#endif