From 93669a4db10d2042c4b104f70f6f54ef578dad46 Mon Sep 17 00:00:00 2001 From: Gwanglim Lee Date: Mon, 9 Jun 2014 13:43:34 -0400 Subject: [PATCH] resource parameter is used in _e_shell_surface_cb_move Summary: remove EINA_UNUSED of resource parameter in _e_shell_surface_cb_move Test Plan: N/A Reviewers: devilhorns, zmike, raster, stefan_schmidt CC: cedric Differential Revision: https://phab.enlightenment.org/D967 --- src/modules/wl_desktop_shell/e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/wl_desktop_shell/e_mod_main.c b/src/modules/wl_desktop_shell/e_mod_main.c index d26cb7f2a..bfdfa95a8 100644 --- a/src/modules/wl_desktop_shell/e_mod_main.c +++ b/src/modules/wl_desktop_shell/e_mod_main.c @@ -68,7 +68,7 @@ _e_shell_surface_cb_pong(struct wl_client *client EINA_UNUSED, struct wl_resourc } static void -_e_shell_surface_cb_move(struct wl_client *client EINA_UNUSED, struct wl_resource *resource EINA_UNUSED, struct wl_resource *seat_resource EINA_UNUSED, uint32_t serial EINA_UNUSED) +_e_shell_surface_cb_move(struct wl_client *client EINA_UNUSED, struct wl_resource *resource, struct wl_resource *seat_resource EINA_UNUSED, uint32_t serial EINA_UNUSED) { E_Client *ec; E_Comp_Wl_Data *cdata;