From f1c45204209bb5e6931c77f2e47e95d2297c59a1 Mon Sep 17 00:00:00 2001 From: Christopher Michael 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 :) SVN revision: 50714 --- legacy/evas/src/lib/file/evas_module.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/legacy/evas/src/lib/file/evas_module.c b/legacy/evas/src/lib/file/evas_module.c index 957767a540..22c931347e 100644 --- a/legacy/evas/src/lib/file/evas_module.c +++ b/legacy/evas/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;