luncher: fix shadowed local variable

Make sure the local variable names not actually shadow each other.
This commit is contained in:
Stefan Schmidt 2016-10-31 11:30:57 +01:00
parent 7bb858d2a3
commit e464e25211
1 changed files with 2 additions and 2 deletions

View File

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