fix eina_mempool env var fetch for eet alloc mode.

SVN revision: 75098
This commit is contained in:
Carsten Haitzler 2012-08-10 12:42:08 +00:00
parent 64a7ed822d
commit 78ca67dfd0
1 changed files with 1 additions and 1 deletions

View File

@ -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";