raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a04fd1c53640cb35555325fe273352ec263e32ac
commit a04fd1c53640cb35555325fe273352ec263e32ac Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Tue Nov 25 16:58:25 2014 +0900 axis code ... warning -- --- src/lib/ecore_input_evas/ecore_input_evas.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/ecore_input_evas/ecore_input_evas.c b/src/lib/ecore_input_evas/ecore_input_evas.c index e9e7fb9..23e9543 100644 --- a/src/lib/ecore_input_evas/ecore_input_evas.c +++ b/src/lib/ecore_input_evas/ecore_input_evas.c @@ -550,7 +550,9 @@ ecore_event_evas_axis_update(void *data EINA_UNUSED, int type EINA_UNUSED, void e = event; lookup = _ecore_event_window_match(e->event_window); if (!lookup) return ECORE_CALLBACK_PASS_ON; - evas_event_feed_axis_update(lookup->evas, e->timestamp, e->device, e->toolid, e->naxis, e->axis, NULL); + evas_event_feed_axis_update(lookup->evas, e->timestamp, e->device, + e->toolid, e->naxis, + (Evas_Axis *)e->axis, NULL); return ECORE_CALLBACK_PASS_ON; } --
