From 79d7d39d21a6fea71b9cad634ee6873b1aaf7016 Mon Sep 17 00:00:00 2001 From: raster Date: Fri, 10 Aug 2012 12:42:08 +0000 Subject: [PATCH] fix eina_mempool env var fetch for eet alloc mode. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eet@75098 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/eet_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eet_alloc.c b/src/lib/eet_alloc.c index 1671ccd..310b1bf 100644 --- a/src/lib/eet_alloc.c +++ b/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"; -- 2.7.4