summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2009-12-13 18:46:29 +0000
committerMichael Niedermayer <michaelni@gmx.at>2009-12-13 18:46:29 +0000
commit813338a00a2b0b89c65fbbb84c02c7327cc0aa71 (patch)
tree25a2193e8a40b6831a120b9ba5f2cde2b7d5b656
parent64b12fc31706d188d8d4a39f61dbc6fc59095e83 (diff)
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
-rw-r--r--ffplay.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ffplay.c b/ffplay.c
index 39d960a7e4..5fe054f666 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -40,6 +40,8 @@
#endif
#undef exit
+#undef printf
+#undef fprintf
const char program_name[] = "FFplay";
const int program_birth_year = 2003;