cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=284276b2ece07c605e49f5432bf2dac7ad80bcaa
commit 284276b2ece07c605e49f5432bf2dac7ad80bcaa Author: Prince Kumar Dubey <[email protected]> Date: Mon Oct 16 13:29:01 2017 -0700 ecore: removing assignment operation to avoid warning. Summary: assignment to local variable "ret" has no meaning as it is not used after assignment. So, removing assignment operation to avoid warning. Reviewers: raster, cedric Subscribers: jpeg, rajeshps Differential Revision: https://phab.enlightenment.org/D5303 Signed-off-by: Cedric BAIL <[email protected]> --- src/lib/ecore_x/ecore_x_keygrab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ecore_x/ecore_x_keygrab.c b/src/lib/ecore_x/ecore_x_keygrab.c index 64f342b887..dbd69f20ca 100644 --- a/src/lib/ecore_x/ecore_x_keygrab.c +++ b/src/lib/ecore_x/ecore_x_keygrab.c @@ -229,7 +229,7 @@ _ecore_x_window_keytable_possible_global_exclusiveness_unset(int keycode) return EINA_FALSE; } else - ret = _ecore_x_window_keytable_key_del(&keytable, keycode, _atom_grab_excl_win); + _ecore_x_window_keytable_key_del(&keytable, keycode, _atom_grab_excl_win); _keytable_free(&keytable); return EINA_FALSE; --
