raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=21b4321d4c28552a537b2b9bb6ef7653ca31087e
commit 21b4321d4c28552a537b2b9bb6ef7653ca31087e Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Mon Feb 26 15:26:27 2018 +0900 ecore anim - use pointers to real things for epoll objects while really "fake" they are real pointers and thus shouldnt get complaints from tools about invalid ptrs... doesnt fix any bug though. --- src/lib/ecore/ecore_anim.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ecore/ecore_anim.c b/src/lib/ecore/ecore_anim.c index 1796b67089..2e2b1bdcce 100644 --- a/src/lib/ecore/ecore_anim.c +++ b/src/lib/ecore/ecore_anim.c @@ -181,8 +181,8 @@ _timer_tick_core(void *data EINA_UNUSED, Ecore_Thread *thread) pollfd = -1; } -#define INPUT_TIMER_CONTROL ((void *) ((unsigned long) 0x11)) -#define INPUT_TIMER_TIMERFD ((void *) ((unsigned long) 0x22)) +#define INPUT_TIMER_CONTROL (&(pollincoming[0])) +#define INPUT_TIMER_TIMERFD (&(pollincoming[1])) if (pollfd >= 0) { --
