1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

s4-smbd: Remove obsolete singal type cast from the thread process model.

This commit is contained in:
Andreas Schneider 2010-02-19 12:49:08 +01:00 committed by Stefan Metzmacher
parent f33b69753d
commit 95a0ab5f11

View File

@ -459,13 +459,13 @@ setup our recursive fault handlers
static void thread_fault_setup(void)
{
#ifdef SIGSEGV
CatchSignal(SIGSEGV,SIGNAL_CAST thread_sig_fault);
CatchSignal(SIGSEGV, thread_sig_fault);
#endif
#ifdef SIGBUS
CatchSignal(SIGBUS,SIGNAL_CAST thread_sig_fault);
CatchSignal(SIGBUS, thread_sig_fault);
#endif
#ifdef SIGABRT
CatchSignal(SIGABRT,SIGNAL_CAST thread_sig_fault);
CatchSignal(SIGABRT, thread_sig_fault);
#endif
}