From db16e3ca6562121c5c9d87a66b2c646e3ad2cf81 Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Wed, 9 Jun 2010 18:30:50 +0000 Subject: log.c: Use parameter passed to macro instead of the equivalent local variable in the only function that uses the macro. Originally committed as revision 23555 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavutil/log.c') diff --git a/libavutil/log.c b/libavutil/log.c index 119e199026..9e09a10398 100644 --- a/libavutil/log.c +++ b/libavutil/log.c @@ -39,7 +39,7 @@ int av_log_level = AV_LOG_INFO; static const uint8_t color[] = {12,12,12,14,7,7,7}; static int16_t background, attr_orig; static HANDLE con; -#define set_color(x) SetConsoleTextAttribute(con, background | color[level]) +#define set_color(x) SetConsoleTextAttribute(con, background | color[x]) #define reset_color() SetConsoleTextAttribute(con, attr_orig) #else static const uint8_t color[]={0x41,0x41,0x11,0x03,9,9,9}; -- cgit v1.2.3