[commit: packages/process] master: Fix a syntax error (cac4d84)
git at git.haskell.org
git at git.haskell.org
Thu Mar 19 11:38:14 UTC 2015
Repository : ssh://git@git.haskell.org/process
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/cac4d8495bdbedf6900605b624f647aca5182421/process
>---------------------------------------------------------------
commit cac4d8495bdbedf6900605b624f647aca5182421
Author: Bartosz Nitka <bnitka at fb.com>
Date: Fri Feb 27 07:28:44 2015 -0800
Fix a syntax error
>---------------------------------------------------------------
cac4d8495bdbedf6900605b624f647aca5182421
System/Process.hsc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/System/Process.hsc b/System/Process.hsc
index e9d470f..cbefb2c 100644
--- a/System/Process.hsc
+++ b/System/Process.hsc
@@ -433,7 +433,7 @@ readCreateProcess
readCreateProcess cp input = do
let cp_opts = cp {
std_in = CreatePipe,
- std_out = CreatePipe,
+ std_out = CreatePipe
}
(ex, output) <- withCreateProcess_ "readCreateProcess" cp_opts $
\(Just inh) (Just outh) _ ph -> do
More information about the ghc-commits
mailing list