[Pkg-haskell-commits] [SCM] haskell-testpack branch, master, updated. debian/1.0.2-1-4-gb0d6b36

John Goerzen jgoerzen at complete.org
Fri Apr 23 15:14:06 UTC 2010


The following commit has been merged in the master branch:
commit 8552e2f9a4b013467442d821e40f8ad71b4a6928
Author: John Goerzen <jgoerzen at complete.org>
Date:   Thu Nov 23 07:18:31 2006 +0100

    Fixed compiler error

diff --git a/MissingH/ProgressMeter.hs b/MissingH/ProgressMeter.hs
index d2837b5..909caa5 100644
--- a/MissingH/ProgressMeter.hs
+++ b/MissingH/ProgressMeter.hs
@@ -92,7 +92,7 @@ displayMeter r =
 then another CR. -}
 clearMeter :: ProgressMeter -> IO ()
 clearMeter pm = withMVar pm $ \m ->
-                putStr $ "\r" ++ replicate (width m - 1) " " ++ "\r"
+                putStr $ "\r" ++ replicate (width m - 1) ' ' ++ "\r"
 
 {- | Starts a thread that updates the meter every n seconds by calling
 the specified function.  Note: 'displayMeter' is an ideal function here.

-- 
haskell-testpack



More information about the Pkg-haskell-commits mailing list