From 957d6232e1dcf6ada40ad8558436dfb90f6fc950 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 24 Jan 2007 11:43:26 +0000 Subject: [PATCH] fix warning --- stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp b/stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp index 7656e01322..eb58221a68 100644 --- a/stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp +++ b/stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp @@ -65,10 +65,10 @@ static bool EmergencyShutdown( int signal, siginfo_t *si, const ucontext_t *uc ) #if defined(CRASH_HANDLER) /* If we ran the crash handler, then die. */ kill( getpid(), SIGKILL ); -#else +#endif + /* We didn't run the crash handler. Run the default handler, so we can dump core. */ return false; -#endif } #if defined(HAVE_TLS)