From 92fd5b4be1b2ed7ba7988abf5bf086e7036f93c4 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Tue, 3 Jun 2014 16:15:52 -0400 Subject: [PATCH] add missing EINA_UNUSED Signed-off-by: Chris Michael --- src/bin/e_comp_wl_data.c | 8 ++++---- src/bin/e_comp_wl_input.c | 2 +- src/modules/wl_desktop_shell/e_mod_main.c | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/bin/e_comp_wl_data.c b/src/bin/e_comp_wl_data.c index ea5e748dd..bfc4ce017 100644 --- a/src/bin/e_comp_wl_data.c +++ b/src/bin/e_comp_wl_data.c @@ -3,13 +3,13 @@ #include "e_comp_wl_data.h" static void -_e_comp_wl_data_device_cb_drag_start(struct wl_client *client, struct wl_resource *resource, struct wl_resource *source_resource, struct wl_resource *origin_resource, struct wl_resource *icon_resource, uint32_t serial) +_e_comp_wl_data_device_cb_drag_start(struct wl_client *client EINA_UNUSED, struct wl_resource *resource EINA_UNUSED, struct wl_resource *source_resource EINA_UNUSED, struct wl_resource *origin_resource EINA_UNUSED, struct wl_resource *icon_resource EINA_UNUSED, uint32_t serial EINA_UNUSED) { } static void -_e_comp_wl_data_device_cb_selection_set(struct wl_client *client, struct wl_resource *resource, struct wl_resource *source_resource, uint32_t serial) +_e_comp_wl_data_device_cb_selection_set(struct wl_client *client EINA_UNUSED, struct wl_resource *resource EINA_UNUSED, struct wl_resource *source_resource EINA_UNUSED, uint32_t serial EINA_UNUSED) { } @@ -21,7 +21,7 @@ static const struct wl_data_device_interface _e_data_device_interface = }; static void -_e_comp_wl_data_manager_cb_source_create(struct wl_client *client, struct wl_resource *resource, uint32_t id) +_e_comp_wl_data_manager_cb_source_create(struct wl_client *client EINA_UNUSED, struct wl_resource *resource EINA_UNUSED, uint32_t id EINA_UNUSED) { /* NB: New resource */ } @@ -109,7 +109,7 @@ e_comp_wl_data_manager_init(E_Comp_Wl_Data *cdata) } EINTERN void -e_comp_wl_data_manager_shutdown(E_Comp_Wl_Data *cdata) +e_comp_wl_data_manager_shutdown(E_Comp_Wl_Data *cdata EINA_UNUSED) { /* destroy the global manager resource */ /* if (cdata->mgr.global) wl_global_destroy(cdata->mgr.global); */ diff --git a/src/bin/e_comp_wl_input.c b/src/bin/e_comp_wl_input.c index f5d1bdf20..b6d5db04d 100644 --- a/src/bin/e_comp_wl_input.c +++ b/src/bin/e_comp_wl_input.c @@ -30,7 +30,7 @@ _e_comp_wl_input_cb_resource_destroy(struct wl_client *client EINA_UNUSED, struc } static void -_e_comp_wl_input_pointer_cb_cursor_set(struct wl_client *client, struct wl_resource *resource, uint32_t serial, struct wl_resource *surface_resource, int32_t x, int32_t y) +_e_comp_wl_input_pointer_cb_cursor_set(struct wl_client *client EINA_UNUSED, struct wl_resource *resource EINA_UNUSED, uint32_t serial EINA_UNUSED, struct wl_resource *surface_resource EINA_UNUSED, int32_t x EINA_UNUSED, int32_t y EINA_UNUSED) { E_Comp_Wl_Data *cdata; diff --git a/src/modules/wl_desktop_shell/e_mod_main.c b/src/modules/wl_desktop_shell/e_mod_main.c index 0fab3525d..65fd6295e 100644 --- a/src/modules/wl_desktop_shell/e_mod_main.c +++ b/src/modules/wl_desktop_shell/e_mod_main.c @@ -429,7 +429,7 @@ _e_xdg_shell_surface_cb_transient_for_set(struct wl_client *client EINA_UNUSED, } static void -_e_xdg_shell_surface_cb_margin_set(struct wl_client *client EINA_UNUSED, struct wl_resource *resource, int32_t l, int32_t r, int32_t t, int32_t b) +_e_xdg_shell_surface_cb_margin_set(struct wl_client *client EINA_UNUSED, struct wl_resource *resource EINA_UNUSED, int32_t l, int32_t r, int32_t t, int32_t b) { /* E_Client *ec; */ /* int32_t diff; */