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
This commit is contained in:
Christopher Michael 2010-07-31 06:15:00 +00:00
parent ddf7f8d49f
commit f1c4520420
1 changed files with 3 additions and 4 deletions

View File

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