From 8e6d51207682d16ec6e5185ba13e9fa3727088d5 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Thu, 19 Feb 2015 17:02:46 -0500 Subject: [PATCH] change output_bind function name Signed-off-by: Chris Michael --- src/bin/e_comp_wl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 26cb3a8e3..c05f405da 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -2256,7 +2256,7 @@ _e_comp_wl_cb_output_unbind(struct wl_resource *resource) } static void -_e_comp_wl_output_bind(struct wl_client *client, void *data, uint32_t version, uint32_t id) +_e_comp_wl_cb_output_bind(struct wl_client *client, void *data, uint32_t version, uint32_t id) { E_Comp_Data *cdata = data; Evas_Engine_Info_Drm *einfo; @@ -2368,7 +2368,7 @@ _e_comp_wl_compositor_create(void) goto comp_global_err; } if (!wl_global_create(cdata->wl.disp, &wl_output_interface, 2, - cdata, _e_comp_wl_output_bind)) + cdata, _e_comp_wl_cb_output_bind)) { ERR("Could not add output to wayland globals: %m"); goto comp_global_err;