[FFmpeg-cvslog] r23555 - trunk/libavutil/log.c
ramiro
subversion
Wed Jun 9 20:30:50 CEST 2010
Author: ramiro
Date: Wed Jun 9 20:30:50 2010
New Revision: 23555
Log:
log.c: Use parameter passed to macro instead of the equivalent local variable
in the only function that uses the macro.
Modified:
trunk/libavutil/log.c
Modified: trunk/libavutil/log.c
==============================================================================
--- trunk/libavutil/log.c Wed Jun 9 20:13:01 2010 (r23554)
+++ trunk/libavutil/log.c Wed Jun 9 20:30:50 2010 (r23555)
@@ -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};
More information about the ffmpeg-cvslog
mailing list