fix casts to use void ptr to avoid warning that isnt important

This commit is contained in:
Carsten Haitzler 2019-01-12 01:49:54 +00:00
parent 35f4b44d00
commit 70b7d56ea5
1 changed files with 2 additions and 2 deletions

View File

@ -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); \
} \