cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=75b77c4722ed8c1b19cc7e742733b1f3970397e2
commit 75b77c4722ed8c1b19cc7e742733b1f3970397e2 Author: Srivardhan Hebbar <[email protected]> Date: Tue Dec 9 11:16:42 2014 +0100 eina: removed multiple eina_init call. Summary: I observed that eina_init() was called twice in this function and eina_shutdown() once. So thought this might be a mistake, and so have cleaned it. Signed-off-by: Srivardhan Hebbar <[email protected]> Reviewers: devilhorns, cedric Reviewed By: cedric Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D1748 Signed-off-by: Cedric BAIL <[email protected]> --- src/benchmarks/eina/eina_bench_rectangle_pool.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/benchmarks/eina/eina_bench_rectangle_pool.c b/src/benchmarks/eina/eina_bench_rectangle_pool.c index 96d4b1b..9c30bac 100644 --- a/src/benchmarks/eina/eina_bench_rectangle_pool.c +++ b/src/benchmarks/eina/eina_bench_rectangle_pool.c @@ -32,7 +32,6 @@ eina_bench_eina_rectangle_pool(int request) int i; eina_init(); - eina_init(); pool = eina_rectangle_pool_new(2048, 2048); if (!pool) --
