diff options
author | Joey Hess <joey@kitenet.net> | 2013-11-12 02:41:51 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-11-12 02:41:51 -0400 |
commit | d73a7c9926c9219a098454a4ccbe22aa7ffe04b6 (patch) | |
tree | 7fd2508a6f3d211d577bbc0549ab698a3101d1f2 | |
parent | 77b185d72d655bfc5a4a4c9dca246c7558837e35 (diff) |
squash warning
-rw-r--r-- | Utility/Process.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/Process.hs b/Utility/Process.hs index e1ef7bd6a..fe8c6c479 100644 --- a/Utility/Process.hs +++ b/Utility/Process.hs @@ -228,7 +228,7 @@ processTranscript cmd opts input = do s <- hGetContents h v <- newEmptyMVar void $ forkIO $ do - E.evaluate (length s) + void $ E.evaluate (length s) putMVar v () return $ do takeMVar v |