efl_debug: fix typo, EXIT_FAILURE not EINA_TRUE.

although the same value, be clear on it.
This commit is contained in:
Gustavo Sverzut Barbieri 2016-11-28 10:48:19 -02:00
parent e2d087aba2
commit 9effe44d8b
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ _error(void *data EINA_UNUSED, const Efl_Event *event)
fprintf(stderr, "ERROR: error communicating to %s: %s\n",
efl_net_dialer_address_dial_get(dialer),
eina_error_msg_get(*perr));
retval = EINA_TRUE;
retval = EXIT_FAILURE;
ecore_main_loop_quit();
}