hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=d3b0347ffda823430bc2114190717b213669b68e
commit d3b0347ffda823430bc2114190717b213669b68e Author: Hermet Park <her...@hermet.pe.kr> Date: Tue Aug 23 04:29:16 2016 +0900 eeek. stupid. simple mistake. --- src/bin/main.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/bin/main.c b/src/bin/main.c index 090e84f..5a92dc1 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -1017,17 +1017,15 @@ enventor_lock_remove() #endif } +#ifndef _WIN32 static void crash_handler(int x EINA_UNUSED, siginfo_t *info EINA_UNUSED, void *data EINA_UNUSED) { -#ifndef _WIN32 EINA_LOG_ERR("Eeeek! Eventor is terminated abnormally!"); enventor_lock_remove(); -#else - (void) 0; -#endif } +#endif static void sigaction_setup(void) --