From 78ca67dfd088355f92408cca4ae7d0e50567982e Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Fri, 10 Aug 2012 12:42:08 +0000 Subject: [PATCH] fix eina_mempool env var fetch for eet alloc mode. SVN revision: 75098 --- legacy/eet/src/lib/eet_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/eet/src/lib/eet_alloc.c b/legacy/eet/src/lib/eet_alloc.c index 1671ccdf58..310b1bff97 100644 --- a/legacy/eet/src/lib/eet_alloc.c +++ b/legacy/eet/src/lib/eet_alloc.c @@ -64,7 +64,7 @@ eet_mempool_init(void) mempool_array[i]->mp = eina_mempool_add(choice, mempool_array[i]->name, NULL, mempool_array[i]->size, 16); if (!mempool_array[i]->mp) { - if (!strcmp(choice, "pass_through")) + if (!(!strcmp(choice, "pass_through"))) { ERR("Falling back to pass through ! Previously tried '%s' mempool.", choice); choice = "pass_through";