From acf622b31b67a72a9aa4bcc821b16aa0a438e3cd Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Mon, 20 Apr 2020 11:57:51 -0400 Subject: [PATCH] e_comp_wl: Remove EINA_UNUSED from used parameter 'client' is potentially used here if we have an error --- src/bin/e_comp_wl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 13bd70f86..76775ff7a 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -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;