Missing include in eina_inlist.c

Including eina_log.h in eina_inlist.c
Removing warning:
        warning: implicit declaration of function ‘EINA_LOG_ERR’
If you do not include it, and compile eina with safety checks disabled,
Evas and Elementary will not find the EINA_LOG_ERR symbol when
compiling

SVN revision: 54995
This commit is contained in:
helen 2010-11-25 19:00:59 +00:00 committed by helen
parent db4e12ca36
commit be33a14270
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@
#include "eina_config.h"
#include "eina_private.h"
#include "eina_error.h"
#include "eina_log.h"
/* undefs EINA_ARG_NONULL() so NULL checks are not compiled out! */
#include "eina_safety_checks.h"