tasn pushed a commit to branch master.

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

commit 65367a4a076b9bfb4b3d58bdc87c2f5f677c8b70
Author: Tom Hacohen <[email protected]>
Date:   Mon Sep 26 14:50:08 2016 +0100

    Ecore promise: Renamed shadow variable.
    
    Please everyone, use -Wshadow and fix your damn wranings.
---
 src/lib/ecore/efl_promise.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/ecore/efl_promise.c b/src/lib/ecore/efl_promise.c
index bd933fc..4bc7496 100644
--- a/src/lib/ecore/efl_promise.c
+++ b/src/lib/ecore/efl_promise.c
@@ -1077,10 +1077,10 @@ efl_future_iterator_all(Eina_Iterator *it)
 static void
 _then_race(void *data, const Efl_Event *ev)
 {
-   Efl_Future_Event_Success *success = ev->info;
+   Efl_Future_Event_Success *ev_success = ev->info;
    Efl_Promise_Race *race = data;
    // This is a trick due to the fact we are using internal function call to 
register this functions
-   Efl_Promise_Msg *d = success->value;
+   Efl_Promise_Msg *d = ev_success->value;
    Efl_Future *f;
    Eina_Array_Iterator iterator;
    unsigned int i;

-- 


Reply via email to