abort if e_ipc connection can't be made, also return a value on exit...

SVN revision: 71953
This commit is contained in:
Mike Blumenkrantz 2012-06-11 14:46:10 +00:00
parent 4adf0b17e4
commit de934e4c55
1 changed files with 2 additions and 1 deletions

View File

@ -145,7 +145,7 @@ main(int argc, char **argv)
ecore_file_init();
ecore_ipc_init();
_e_storage_volume_edd_init();
_e_fm_ipc_init();
if (!_e_fm_ipc_init()) return -1;
efm_log_dom = eina_log_domain_register("efm", EINA_COLOR_GREEN);
eina_log_domain_level_set("efm", EINA_LOG_LEVEL_DBG);
_e_fm_init();
@ -168,6 +168,7 @@ main(int argc, char **argv)
ecore_file_shutdown();
ecore_shutdown();
eina_shutdown();
return 0;
}
#ifdef HAVE_HAL_MOUNT