From 89ca8ee48a058fb251b241d20450ed532d49d579 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 4 Apr 2007 14:45:08 +0000 Subject: [PATCH 1/1] Fix braino --- System/Posix/Signals.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/System/Posix/Signals.hs b/System/Posix/Signals.hs index 962526d..2af259a 100644 --- a/System/Posix/Signals.hs +++ b/System/Posix/Signals.hs @@ -281,7 +281,7 @@ signalProcessGroup sig pgid = throwErrnoIfMinus1_ "signalProcessGroup" (c_killpg (fromIntegral pgid) sig) foreign import ccall unsafe "killpg" - c_killpg :: CInt -> CInt -> IO CInt + c_killpg :: CPid -> CInt -> IO CInt -- | @raiseSignal int@ calls @kill@ to signal the current process -- with interrupt signal @int@. -- 1.7.10.4