[commit: unix] ghc-7.6: Fix some parentheses (4eb45c8)

Ian Lynagh igloo at earth.li
Fri Jan 18 00:20:32 CET 2013


Repository : ssh://darcs.haskell.org//srv/darcs/packages/unix

On branch  : ghc-7.6

http://hackage.haskell.org/trac/ghc/changeset/4eb45c884a3f8274b7561ade70878bc07772bd1d

>---------------------------------------------------------------

commit 4eb45c884a3f8274b7561ade70878bc07772bd1d
Author: Ian Lynagh <ian at well-typed.com>
Date:   Thu Jan 17 19:14:13 2013 +0000

    Fix some parentheses
    
    I assume that this is what was intended.

>---------------------------------------------------------------

 System/Posix/Signals.hsc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/System/Posix/Signals.hsc b/System/Posix/Signals.hsc
index 8195845..ec43366 100644
--- a/System/Posix/Signals.hsc
+++ b/System/Posix/Signals.hsc
@@ -299,7 +299,7 @@ foreign import ccall unsafe "killpg"
 raiseSignal :: Signal -> IO ()
 raiseSignal sig = throwErrnoIfMinus1_ "raiseSignal" (c_raise sig)
 
-#if defined(__GLASGOW_HASKELL__) && (defined(openbsd_HOST_OS) || defined(freebsd_HOST_OS) || defined(dragonfly_HOST_OS)) || defined(netbsd_HOST_OS)
+#if defined(__GLASGOW_HASKELL__) && (defined(openbsd_HOST_OS) || defined(freebsd_HOST_OS) || defined(dragonfly_HOST_OS) || defined(netbsd_HOST_OS))
 foreign import ccall unsafe "genericRaise"
   c_raise :: CInt -> IO CInt
 #else





More information about the ghc-commits mailing list