devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=f3371ff04c30db15cd43dd3637a43fb7aceb9e4a
commit f3371ff04c30db15cd43dd3637a43fb7aceb9e4a Author: Chris Michael <cp.mich...@samsung.com> Date: Mon Jul 11 12:11:00 2016 -0400 'cur_group' variable is unused here if we are not building for wayland Signed-off-by: Chris Michael <cp.mich...@samsung.com> --- src/bin/e_xkb.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/e_xkb.c b/src/bin/e_xkb.c index 1f7cdae..1b4ecdc 100644 --- a/src/bin/e_xkb.c +++ b/src/bin/e_xkb.c @@ -251,6 +251,8 @@ _e_wl_xkb_update(int cur_group) #ifdef HAVE_WAYLAND e_comp_wl_input_keymap_index_set(cur_group); _e_xkb_update_event(cur_group); +#else + (void)cur_group; #endif } --