From be33a14270455830f6c6af3932f52faad3c4427a Mon Sep 17 00:00:00 2001 From: helen Date: Thu, 25 Nov 2010 19:00:59 +0000 Subject: [PATCH] Missing include in eina_inlist.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- legacy/eina/src/lib/eina_inlist.c | 1 + 1 file changed, 1 insertion(+) diff --git a/legacy/eina/src/lib/eina_inlist.c b/legacy/eina/src/lib/eina_inlist.c index 634390732e..91ac278f9e 100644 --- a/legacy/eina/src/lib/eina_inlist.c +++ b/legacy/eina/src/lib/eina_inlist.c @@ -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"