From f1a7474164cebbb19da431a18da6ebcbbd37733f Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 15 Aug 2001 09:28:58 +0000 Subject: [PATCH] [project @ 2001-08-15 09:28:58 by simonmar] sigh, I'll make this work one day --- ghc/lib/std/PrelMarshalArray.lhs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghc/lib/std/PrelMarshalArray.lhs b/ghc/lib/std/PrelMarshalArray.lhs index 2f2a3d4..d9ec16d 100644 --- a/ghc/lib/std/PrelMarshalArray.lhs +++ b/ghc/lib/std/PrelMarshalArray.lhs @@ -1,5 +1,5 @@ % ----------------------------------------------------------------------------- -% $Id: PrelMarshalArray.lhs,v 1.6 2001/08/15 09:24:47 simonmar Exp $ +% $Id: PrelMarshalArray.lhs,v 1.7 2001/08/15 09:28:58 simonmar Exp $ % % (c) The FFI task force, 2000 % @@ -126,8 +126,8 @@ reallocArray0 ptr size = reallocArray ptr (size + 1) -- needed linear stack space. -- peekArray :: Storable a => Int -> Ptr a -> IO [a] -peekArray size ptr | size < 0 = return [] - | othwerwise = f (size-1) [] +peekArray size ptr | size < 0 = return [] + | otherwise = f (size-1) [] where f 0 acc = do e <- peekElemOff ptr 0; return (e:acc) f n acc = do e <- peekElemOff ptr n; f (n-1) (e:acc) -- 1.7.10.4