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

devs/devilhorns/rotation
Carsten Haitzler 5 years ago
parent 35f4b44d00
commit 70b7d56ea5
  1. 4
      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); \
} \

Loading…
Cancel
Save