From 50e574faaa275e107f82dbf084b2b35d4f010e5b Mon Sep 17 00:00:00 2001 From: devilhorns Date: Sat, 31 Jul 2010 06:15:00 +0000 Subject: [PATCH] Fix evas_module clean 'bug'. NB: Not really an issue as this code isn't used currently, but may be in the future, so fix the minor bugger now, just in case :) git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@50714 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/file/evas_module.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/lib/file/evas_module.c b/src/lib/file/evas_module.c index 957767a..22c9313 100644 --- a/src/lib/file/evas_module.c +++ b/src/lib/file/evas_module.c @@ -474,10 +474,9 @@ evas_module_clean(void) if (noclean == -1) { if (getenv("EVAS_NOCLEAN")) - { - noclean = 1; - } - noclean = 0; + noclean = 1; + else + noclean = 0; } if (noclean == 1) return; -- 2.7.4