devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=ff22abc4be33ae03542e6ab97acaebe77152614d
commit ff22abc4be33ae03542e6ab97acaebe77152614d Author: Chris Michael <cp.mich...@samsung.com> Date: Mon Jul 10 13:02:02 2017 -0400 ecore-wl2: Rename internal function As we are in the Ecore_Wl2 library, lets use a function name that reflects this. NB: No functional changes Signed-off-by: Chris Michael <cp.mich...@samsung.com> --- src/lib/ecore_wl2/ecore_wl2_input.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/ecore_wl2/ecore_wl2_input.c b/src/lib/ecore_wl2/ecore_wl2_input.c index 8eef0158c3..407f8f5600 100644 --- a/src/lib/ecore_wl2/ecore_wl2_input.c +++ b/src/lib/ecore_wl2/ecore_wl2_input.c @@ -1503,7 +1503,7 @@ _ecore_wl2_devices_free(Ecore_Wl2_Input_Devices *devices) } static Eina_Bool -_ecore_evas_wl_common_cb_device_event(void *data, int type, void *event) +_ecore_wl2_cb_device_event(void *data, int type, void *event) { Ecore_Wl2_Input_Devices *devs, *devices = NULL;; Ecore_Wl2_Event_Device *ev = event; @@ -1614,11 +1614,11 @@ _ecore_wl2_input_add(Ecore_Wl2_Display *display, unsigned int id, unsigned int v input->dev_add_handler = ecore_event_handler_add(ECORE_WL2_EVENT_DEVICE_ADDED, - _ecore_evas_wl_common_cb_device_event, input); + _ecore_wl2_cb_device_event, input); input->dev_remove_handler = ecore_event_handler_add(ECORE_WL2_EVENT_DEVICE_REMOVED, - _ecore_evas_wl_common_cb_device_event, input); + _ecore_wl2_cb_device_event, input); } void --