Skip to content

Commit f5027af

Browse files
committed
GH77: Correct linux build errors.
1 parent 7afdb41 commit f5027af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

System/Process/Internals.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ createProcessExt_
108108
createProcessExt_ = createProcess_Internal_ext
109109
#else
110110
createProcessExt_ name _ proc_
111-
= do (hndStdInput, hndStdOutput, hndStdError, ph) <- createProcess_ nme proc_
112-
return (hndStdInput, hndStdOutput, hndStdError, ph, Nothing, Nothing)
111+
= do (hndStdInput, hndStdOutput, hndStdError, ph) <- createProcess_ name proc_
112+
return (hndStdInput, hndStdOutput, hndStdError, ph, Nothing, Nothing)
113113
#endif
114114
{-# INLINE createProcessExt_ #-}
115115

0 commit comments

Comments
 (0)