summaryrefslogtreecommitdiff
path: root/ghc/compiler
diff options
context:
space:
mode:
authorsimonmar <unknown>1999-10-13 10:43:15 +0000
committersimonmar <unknown>1999-10-13 10:43:15 +0000
commitd410f90dde7f2cb3ed0a0a1778e79209375b922a (patch)
treea1639a74cf8540ec0384f8e1ac3996da48f4b8b5 /ghc/compiler
parent678c3543d8c228ce7ac5bd87a26dd1d93142ca7c (diff)
downloadhaskell-d410f90dde7f2cb3ed0a0a1778e79209375b922a.tar.gz
[project @ 1999-10-13 10:43:15 by simonmar]
typo
Diffstat (limited to 'ghc/compiler')
-rw-r--r--ghc/compiler/utils/PrimPacked.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/utils/PrimPacked.lhs b/ghc/compiler/utils/PrimPacked.lhs
index fe01b0beda..96c17f1e66 100644
--- a/ghc/compiler/utils/PrimPacked.lhs
+++ b/ghc/compiler/utils/PrimPacked.lhs
@@ -185,7 +185,7 @@ new_ps_array size = ST $ \ s ->
#if __GLASGOW_HASKELL__ < 400
case (newCharArray# size s) of { StateAndMutableByteArray# s2# barr# ->
STret s2# (MutableByteArray bot barr#) }
-#elsif __GLASGOW_HASKELL__ < 405
+#elif __GLASGOW_HASKELL__ < 405
case (newCharArray# size s) of { (# s2#, barr# #) ->
(# s2#, MutableByteArray bot barr# #) }
#else