From: helen Date: Thu, 25 Nov 2010 19:00:59 +0000 (+0000) Subject: Missing include in eina_inlist.c X-Git-Tag: submit/2.0alpha-wayland/20121127.222009~892 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9149983fb59a65e995f548431a2295bc1dcf8875;p=profile%2Fivi%2Feina.git 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 git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@54995 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/eina_inlist.c b/src/lib/eina_inlist.c index 6343907..91ac278 100644 --- a/src/lib/eina_inlist.c +++ b/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"