e_comp_wl: Remove EINA_UNUSED from used parameter

'client' is potentially used here if we have an error
This commit is contained in:
Christopher Michael 2020-04-20 11:57:51 -04:00
parent 3af807dafa
commit acf622b31b
1 changed files with 1 additions and 1 deletions

View File

@ -1656,7 +1656,7 @@ _e_comp_wl_surface_cb_destroy(struct wl_client *client EINA_UNUSED, struct wl_re
}
static void
_e_comp_wl_surface_cb_attach(struct wl_client *client EINA_UNUSED, struct wl_resource *resource, struct wl_resource *buffer_resource, int32_t sx, int32_t sy)
_e_comp_wl_surface_cb_attach(struct wl_client *client, struct wl_resource *resource, struct wl_resource *buffer_resource, int32_t sx, int32_t sy)
{
E_Client *ec;
E_Comp_Wl_Buffer *buffer = NULL;