Commit 3c756d18 authored by ramiro's avatar ramiro

log.c: Use parameter passed to macro instead of the equivalent local variable

in the only function that uses the macro.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23555 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 65d6de3a
......@@ -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};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment