tasn pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f13bb9d9f5d89083485b8c1cded64e1969108d98

commit f13bb9d9f5d89083485b8c1cded64e1969108d98
Author: Tom Hacohen <t...@stosb.com>
Date:   Mon Sep 5 16:22:33 2016 +0100

    Efl object: rename shadowing variable.
---
 src/lib/eo/eo_base_class.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/eo/eo_base_class.c b/src/lib/eo/eo_base_class.c
index c48dee0..fd362ec 100644
--- a/src/lib/eo/eo_base_class.c
+++ b/src/lib/eo/eo_base_class.c
@@ -1029,9 +1029,9 @@ _eo_callbacks_sorted_insert(Efl_Object_Data *pd, 
Eo_Callback_Description *cb)
    if ((pd->callbacks_count & 0xF) == 0x0)
      {
         Eo_Callback_Description **tmp;
-        unsigned int length = (pd->callbacks_count | 0xF) + 1;
+        unsigned int new_len = (pd->callbacks_count | 0xF) + 1;
 
-        tmp = realloc(pd->callbacks, length * sizeof 
(Eo_Callback_Description*));
+        tmp = realloc(pd->callbacks, new_len * sizeof 
(Eo_Callback_Description*));
         if (!tmp) return ;
         pd->callbacks = tmp;
      }

-- 


Reply via email to