And use right error handler

SVN revision: 54826
This commit is contained in:
Sebastian Dransfeld 2010-11-22 20:50:09 +00:00
parent 997158486a
commit 5c4adef911
1 changed files with 2 additions and 2 deletions

View File

@ -37,9 +37,9 @@ efreet_init(void)
if (!eet_init()) if (!eet_init())
goto shutdown_eina; goto shutdown_eina;
if (!ecore_init()) if (!ecore_init())
goto shutdown_ecore; goto shutdown_eet;
if (!ecore_file_init()) if (!ecore_file_init())
goto shutdown_ecore_file; goto shutdown_ecore;
_efreet_log_domain_global = eina_log_domain_register("efreet", EFREET_DEFAULT_LOG_COLOR); _efreet_log_domain_global = eina_log_domain_register("efreet", EFREET_DEFAULT_LOG_COLOR);
if (_efreet_log_domain_global < 0) if (_efreet_log_domain_global < 0)
{ {