fix warning

This commit is contained in:
Glenn Maynard
2007-01-24 11:43:26 +00:00
parent 7943380e6c
commit 957d6232e1
@@ -65,10 +65,10 @@ static bool EmergencyShutdown( int signal, siginfo_t *si, const ucontext_t *uc )
#if defined(CRASH_HANDLER) #if defined(CRASH_HANDLER)
/* If we ran the crash handler, then die. */ /* If we ran the crash handler, then die. */
kill( getpid(), SIGKILL ); kill( getpid(), SIGKILL );
#else #endif
/* We didn't run the crash handler. Run the default handler, so we can dump core. */ /* We didn't run the crash handler. Run the default handler, so we can dump core. */
return false; return false;
#endif
} }
#if defined(HAVE_TLS) #if defined(HAVE_TLS)