diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-10-20 15:22:41 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-12-04 21:40:22 +0100 |
commit | cb45553f577f8e0ebfe05d3287e1b6fa5859b967 (patch) | |
tree | a351c06fb3fc1b79f40c9539af0820d9c630bd6c /libavutil/log.c | |
parent | 90153465b04bf4175b8e85587d90b3b3e5399020 (diff) | |
download | ffmpeg-cb45553f577f8e0ebfe05d3287e1b6fa5859b967.tar.gz |
Remove pointless #undefs of previously forbidden functions.
Diffstat (limited to 'libavutil/log.c')
-rw-r--r-- | libavutil/log.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavutil/log.c b/libavutil/log.c index 45c649aae6..80129769f6 100644 --- a/libavutil/log.c +++ b/libavutil/log.c @@ -55,7 +55,6 @@ static const uint8_t color[] = { 0x41, 0x41, 0x11, 0x03, 9, 0x02, 0x06 }; #endif static int use_color = -1; -#undef fprintf static void colored_fputs(int level, const char *str) { if (use_color < 0) { @@ -104,7 +103,6 @@ void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl) if (level > av_log_level) return; line[0] = 0; -#undef fprintf if (print_prefix && avc) { if (avc->parent_log_context_offset) { AVClass** parent = *(AVClass ***) (((uint8_t *) ptr) + |