aboutsummaryrefslogtreecommitdiffhomepage
path: root/System
diff options
context:
space:
mode:
authorGravatar Ian Lynagh <ian@well-typed.com>2013-01-17 19:14:13 +0000
committerGravatar Ian Lynagh <ian@well-typed.com>2013-01-17 19:14:13 +0000
commit0b0915a188e30db83b43e478a4a52990461ad7b2 (patch)
treef155c87c2898c8f712b2c71c6e6ff321a682476f /System
parent14f43cb48afdb91e0e431b6a3dfb9747230d332f (diff)
Fix some parentheses
I assume that this is what was intended.
Diffstat (limited to 'System')
-rw-r--r--System/Posix/Signals.hsc2
1 files changed, 1 insertions, 1 deletions
diff --git a/System/Posix/Signals.hsc b/System/Posix/Signals.hsc
index da12acd..c49775d 100644
--- a/System/Posix/Signals.hsc
+++ b/System/Posix/Signals.hsc
@@ -295,7 +295,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