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 <cedric@osg.samsung.com>
This commit is contained in:
Prince Kumar Dubey 2017-10-16 13:29:01 -07:00 committed by Cedric BAIL
parent 71f0daa9d1
commit 284276b2ec
1 changed files with 1 additions and 1 deletions

View File

@ -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;