elementary: fix wrong refcounting.

SVN revision: 57595
This commit is contained in:
Cedric BAIL 2011-03-08 15:54:15 +00:00
parent a1aef2c1a3
commit 4c49d3ec19
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ external_elm_shutdown(void)
{
init_count--;
DBG("elm_real_shutdown\n");
if (init_count > 1) return;
if (init_count > 0) return;
elm_shutdown();
}