Fix compilation issue reported by Vincent on Windows (stdint and c++ compiler), setup a negative value for flagging the unknown level.

SVN revision: 42049
This commit is contained in:
dieb 2009-08-27 21:32:42 +00:00 committed by dieb
parent e6b9bea5d8
commit 7bc6284e09
1 changed files with 1 additions and 2 deletions

View File

@ -20,7 +20,6 @@
#define EINA_LOG_H_
#include <stdarg.h>
#include <stdint.h>
#include "eina_types.h"
@ -159,7 +158,7 @@ typedef enum _Eina_Log_Level
EINA_LOG_LEVEL_INFO, /**< Information log level */
EINA_LOG_LEVEL_DBG, /**< Debug log level */
EINA_LOG_LEVELS, /**< Count of default log levels */
EINA_LOG_LEVEL_UNKNOWN = INT32_MIN /**< Unknown level */
EINA_LOG_LEVEL_UNKNOWN = (-2147483647-1) /**< Unknown level */
} Eina_Log_Level;
/**