jayji pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=9ac6ad4943ea44c80c3316aed97afd00cf64e0cb
commit 9ac6ad4943ea44c80c3316aed97afd00cf64e0cb Author: Jean Guyomarc'h <j...@guyomarch.bzh> Date: Thu Apr 20 20:49:08 2017 +0200 ecore_input: suppress warning (unused parameter) --- src/lib/ecore_input/ecore_input_joystick.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/ecore_input/ecore_input_joystick.c b/src/lib/ecore_input/ecore_input_joystick.c index 7051597..d809a4b 100644 --- a/src/lib/ecore_input/ecore_input_joystick.c +++ b/src/lib/ecore_input/ecore_input_joystick.c @@ -643,6 +643,8 @@ ecore_input_joystick_name_get(int index) return eina_slstr_copy_new(name); } } +#else + (void) index; #endif return NULL; } --