ops, last minute api change was not updated...

SVN revision: 74743
This commit is contained in:
Gustavo Sverzut Barbieri 2012-08-01 15:35:28 +00:00
parent 73ab74bd09
commit b2a17e8434
1 changed files with 4 additions and 1 deletions

View File

@ -2072,8 +2072,11 @@ eina_log_console_color_set(FILE *fp, const char *color)
if (_disable_color) return;
#ifdef _WIN32
int attr = eina_log_win32_color_convert(color);
int attr = eina_log_win32_color_convert(color, NULL);
HANDLE *handle;
if (!attr) return;
if (fp == stderr)
handle = GetStdHandle(STD_ERROR_HANDLE);
else if (fp == stdout)