stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=cad8353d629c1d2cd04c68b99b54ab13a4163cfb
commit cad8353d629c1d2cd04c68b99b54ab13a4163cfb Author: Stefan Schmidt <[email protected]> Date: Wed Oct 29 16:07:39 2014 +0100 edje_cc_out: Do not shadow another local variable. --- src/bin/edje/edje_cc_out.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/edje/edje_cc_out.c b/src/bin/edje/edje_cc_out.c index fceb974..053ec3e 100755 --- a/src/bin/edje/edje_cc_out.c +++ b/src/bin/edje/edje_cc_out.c @@ -2589,11 +2589,11 @@ _data_image_id_update(Eina_List *images_unused_list) } for (i = 0; i < edje_file->image_dir->sets_count; i++) { - Eina_List *entries, *l; + Eina_List *entries, *list; Edje_Image_Directory_Set_Entry *entry; entries = edje_file->image_dir->sets[i].entries; - EINA_LIST_FOREACH(entries, l, entry) + EINA_LIST_FOREACH(entries, list, entry) { EINA_LIST_FOREACH(images_unused_list, l3, iui) { --
