diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2009-03-27 08:24:46 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2009-03-27 08:24:46 +0000 |
commit | 888facff224d687e4f7fc69851d6fb9bdf4cd1c9 (patch) | |
tree | 5aee905e1415d003c26b51436b58a4870cceec23 /tests | |
parent | 9e793a2462c1509a283e40ddc09d9130750b2f9c (diff) | |
download | ffmpeg-888facff224d687e4f7fc69851d6fb9bdf4cd1c9.tar.gz |
Fix seek test build, by undefining printf and fprintf.
Originally committed as revision 18201 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests')
-rw-r--r-- | tests/seek_test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/seek_test.c b/tests/seek_test.c index c2d0646e4f..7d64058458 100644 --- a/tests/seek_test.c +++ b/tests/seek_test.c @@ -27,6 +27,8 @@ #include "libavformat/avformat.h" #undef exit +#undef printf +#undef fprintf int main(int argc, char **argv) { |