From c692381f2e5f3294af8e771439f0fb7596c45a6a Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 25 Jan 2016 14:02:48 -0500 Subject: [PATCH] add missing EINA_UNUSED for _xkb_changed_state function This function does not use the event parameter, so mark it as unused Signed-off-by: Chris Michael --- src/modules/xkbswitch/e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/xkbswitch/e_mod_main.c b/src/modules/xkbswitch/e_mod_main.c index 8f7f75493..14d57470a 100644 --- a/src/modules/xkbswitch/e_mod_main.c +++ b/src/modules/xkbswitch/e_mod_main.c @@ -279,7 +279,7 @@ _gc_icon(const E_Gadcon_Client_Class *client_class EINA_UNUSED, Evas *evas) } static Eina_Bool -_xkb_changed_state(void *data EINA_UNUSED, int type EINA_UNUSED, void *event) +_xkb_changed_state(void *data EINA_UNUSED, int type EINA_UNUSED, void *event EINA_UNUSED) { _xkb_update_icon(e_config->xkb.cur_group); return ECORE_CALLBACK_PASS_ON;