elm external: fix the previous patch. Sorry I was stupids and didn't check correctly !

SVN revision: 56759
This commit is contained in:
Jonathan Atton 2011-02-06 21:57:25 +00:00
parent 8ea3fc6f4b
commit 7ac159bb4a
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ external_elm_init(void)
char **argv = NULL;
init_count++;
LOG_DEBUG("elm_real_init\n");
DBG("elm_real_init\n");
if (init_count > 1) return;
ecore_app_args_get(&argc, &argv);
elm_init(argc, argv);
@ -22,7 +22,7 @@ static void
external_elm_shutdown(void)
{
init_count--;
LOG_DEBUG("elm_real_shutdown\n");
DBG("elm_real_shutdown\n");
if (init_count > 1) return;
elm_shutdown();
}