From: raster Date: Fri, 10 Aug 2012 12:42:08 +0000 (+0000) Subject: fix eina_mempool env var fetch for eet alloc mode. X-Git-Tag: submit/2.0alpha-wayland/20121127.222001~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=79d7d39d21a6fea71b9cad634ee6873b1aaf7016;p=profile%2Fivi%2Feet.git 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 --- 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";