everything: terminate bc instead of quit

On some systemd SIGQUIT causes the logger to save a coredump.
Quiting bc here does not need save a backtrace here, the termination is
not a crash its a "closing" of the program.
This commit is contained in:
Marcel Hollerbach 2014-12-06 18:04:58 +01:00
parent 5753b7a2dd
commit 029104921d
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ _finish(Evry_Plugin *plugin)
if (exe)
{
ecore_exe_quit(exe);
ecore_exe_terminate(exe);
ecore_exe_free(exe);
exe = NULL;
}