From 813338a00a2b0b89c65fbbb84c02c7327cc0aa71 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 13 Dec 2009 18:46:29 +0000 Subject: [PATCH] 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 --- ffplay.c | 2 ++ 1 file changed, 2 insertions(+) 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;