From 70b7d56ea50a45274c01801c85731a7d88b28cbb Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sat, 12 Jan 2019 01:49:54 +0000 Subject: [PATCH] fix casts to use void ptr to avoid warning that isnt important --- src/bin/e_macros.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_macros.h b/src/bin/e_macros.h index 1e890432e..1bd4390f5 100644 --- a/src/bin/e_macros.h +++ b/src/bin/e_macros.h @@ -95,7 +95,7 @@ do \ { \ Ecore_Event_Handler *_eh; \ - _eh = ecore_event_handler_add(type, (Ecore_Event_Handler_Cb)callback, data); \ + _eh = ecore_event_handler_add(type, (void *)callback, data); \ assert(_eh); \ list = eina_list_append(list, _eh); \ } \ @@ -104,7 +104,7 @@ do \ { \ Ecore_Event_Handler *_eh; \ - _eh = ecore_event_handler_prepend(type, (Ecore_Event_Handler_Cb)callback, data); \ + _eh = ecore_event_handler_prepend(type, (void *)callback, data); \ assert(_eh); \ list = eina_list_append(list, _eh); \ } \