From f13bb9d9f5d89083485b8c1cded64e1969108d98 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Mon, 5 Sep 2016 16:22:33 +0100 Subject: [PATCH] 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 c48dee037f..fd362ec013 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; }