cedric pushed a commit to branch master.

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

commit d5496b09ad51ebcfaa541335bb89477682e038d1
Author: Avi Levin <avi.le...@samsung.com>
Date:   Mon Feb 9 22:04:01 2015 +0100

    eina: fix eina_bench.c compilation error.
    
    Summary:
    When trying to compile eina_bench.c we get an error that say we didnt
    defined the variables that EINA_ARRAY_ITER_NEXT. I defined them.
    @fix
    
    Reviewers: cedric
    
    Subscribers: cedric
    
    Differential Revision: https://phab.enlightenment.org/D1952
    
    Signed-off-by: Cedric BAIL <ced...@osg.samsung.com>
---
 src/benchmarks/eina/eina_bench.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/benchmarks/eina/eina_bench.c b/src/benchmarks/eina/eina_bench.c
index 1f7d18c..dec210e 100644
--- a/src/benchmarks/eina/eina_bench.c
+++ b/src/benchmarks/eina/eina_bench.c
@@ -68,6 +68,10 @@ static void _mempool_shutdown(void)
    eina_module_list_free(_modules);
    if (_modules)
      {
+        Eina_Array_Iterator it;
+        char* module;
+        unsigned int i;
+
         EINA_ARRAY_ITER_NEXT(_modules, i, module, it)
           free(module);
         eina_array_free(_modules);

-- 


Reply via email to