From 95a0ab5f1118727325c2bede31edd53ece6afb85 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 19 Feb 2010 12:49:08 +0100 Subject: [PATCH] s4-smbd: Remove obsolete singal type cast from the thread process model. --- source4/smbd/process_thread.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source4/smbd/process_thread.c b/source4/smbd/process_thread.c index 5be6374c141..e17769d34ef 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 } -- 2.11.4.GIT