bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=01af4dd13b3910f0ab14bbab09ea3cd9b0b9ab3e
commit 01af4dd13b3910f0ab14bbab09ea3cd9b0b9ab3e Author: Marcel Hollerbach <marcel-hollerb...@t-online.de> Date: Wed Jul 26 15:52:12 2017 +0200 elm_widget: fix warning --- src/lib/elementary/elm_widget.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elementary/elm_widget.c b/src/lib/elementary/elm_widget.c index 422bfdddf9..3780475bdf 100644 --- a/src/lib/elementary/elm_widget.c +++ b/src/lib/elementary/elm_widget.c @@ -405,11 +405,11 @@ _logical_parent_eval(Eo *obj EINA_UNUSED, Elm_Widget_Smart_Data *pd) static void _full_eval(Eo *obj, Elm_Widget_Smart_Data *pd) { - Efl_Ui_Focus_Object *old_parent, *old_manager; + Efl_Ui_Focus_Object *old_parent; Efl_Ui_Focus_Object *old_registered_parent, *old_registered_manager; old_parent = _logical_parent_eval(obj, pd); - old_manager = _focus_manager_eval(obj, pd); + _focus_manager_eval(obj, pd); if (old_parent) { --