summaryrefslogtreecommitdiff
path: root/source4/smbd/process_thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/smbd/process_thread.c')
-rw-r--r--source4/smbd/process_thread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/smbd/process_thread.c b/source4/smbd/process_thread.c
index 5be6374c14..e17769d34e 100644
--- a/source4/smbd/process_thread.c
+++ b/source4/smbd/process_thread.c
@@ -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
}