jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=8947caf120d7caa4358b9852e0dd72a93e6e908f
commit 8947caf120d7caa4358b9852e0dd72a93e6e908f Author: Jean-Philippe Andre <[email protected]> Date: Wed Feb 15 16:23:44 2017 +0900 eo: Fix shadow variable warning --- src/lib/eo/eo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c index 48d1d9d..ebcf041 100644 --- a/src/lib/eo/eo.c +++ b/src/lib/eo/eo.c @@ -2879,8 +2879,8 @@ _eo_log_obj_shutdown(void) for (; itr < itr_end; itr++) { - const Eo_Log_Obj_Entry *entry = *itr; void * const *cur; + entry = *itr; if (entry->is_free) continue; for (cur = itr + 1; cur < itr_end; cur++) { --
