From: captainigloo Date: Mon, 26 Jul 2010 16:17:11 +0000 (+0000) Subject: Use INF only when it's defined. Fix a warning during eina compilation. X-Git-Tag: 2.0_alpha~70^2~473 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b7d5a9a1a5f34cbbf85829f39bd1ba6af44ab0da;p=framework%2Fuifw%2Feina.git Use INF only when it's defined. Fix a warning during eina compilation. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/eina@50512 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/modules/mp/one_big/eina_one_big.c b/src/modules/mp/one_big/eina_one_big.c index 32b31f1..cadff32 100644 --- a/src/modules/mp/one_big/eina_one_big.c +++ b/src/modules/mp/one_big/eina_one_big.c @@ -214,11 +214,13 @@ eina_one_big_shutdown(void *data) pool = data; +#ifdef DEBUG if (pool->usage > 0) INF("Bad news we are destroying memory still referenced in mempool [%s]\n", pool->name); if (pool->over > 0) INF("Bad news we are loosing track of pointer from mempool [%s]\n", pool->name); +#endif free(pool->base); free(pool);