stefan pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=e464e25211d6371ed29a9d277d19ae441bd7d095
commit e464e25211d6371ed29a9d277d19ae441bd7d095 Author: Stefan Schmidt <[email protected]> Date: Mon Oct 31 11:30:57 2016 +0100 luncher: fix shadowed local variable Make sure the local variable names not actually shadow each other. --- src/modules/luncher/bar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/luncher/bar.c b/src/modules/luncher/bar.c index 187f38a..3afc285 100644 --- a/src/modules/luncher/bar.c +++ b/src/modules/luncher/bar.c @@ -1274,9 +1274,9 @@ _bar_fill(Instance *inst) if (inst->order) { Efreet_Desktop *desktop; - Eina_List *l; + Eina_List *list; - EINA_LIST_FOREACH(inst->order->desktops, l, desktop) + EINA_LIST_FOREACH(inst->order->desktops, list, desktop) { ic = _bar_icon_add(inst, desktop, NULL); ic->in_order = EINA_TRUE; --
