diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-12-13 18:46:29 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-12-13 18:46:29 +0000 |
commit | 813338a00a2b0b89c65fbbb84c02c7327cc0aa71 (patch) | |
tree | 25a2193e8a40b6831a120b9ba5f2cde2b7d5b656 /ffplay.c | |
parent | 64b12fc31706d188d8d4a39f61dbc6fc59095e83 (diff) | |
download | ffmpeg-813338a00a2b0b89c65fbbb84c02c7327cc0aa71.tar.gz |
Until -DHAVE_AV_CONFIG_H is removed from ffplays compilation, *printf must be #undef.
Without this random changes to the header inclusion can trigger
linking failures, and these are not even picked up in some environments
(some fate machines didnt catch it).
Originally committed as revision 20833 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffplay.c')
-rw-r--r-- | ffplay.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -40,6 +40,8 @@ #endif #undef exit +#undef printf +#undef fprintf const char program_name[] = "FFplay"; const int program_birth_year = 2003; |