From 4e2499f454ea22183b60eff332d186dd9383278f Mon Sep 17 00:00:00 2001 From: Westley Argentum Hennigh Date: Mon, 18 Mar 2013 15:41:22 -0700 Subject: [PATCH] fix typo --- base/process.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/process.jl b/base/process.jl index e1734e72b8eb8..17bb94fc3b0a1 100644 --- a/base/process.jl +++ b/base/process.jl @@ -368,7 +368,7 @@ function readall(cmd::AbstractCmd,stdin::AsyncStream) return takebuf_string(out.buffer) end -writeall(cmd::AbstractCmd, stdout::String) = writeall(cmd, stdout, null_handle) +writeall(cmd::AbstractCmd, stdin::String) = writeall(cmd, stdin, null_handle) function writeall(cmd::AbstractCmd, stdin::String, stdout::AsyncStream) (in,pc) = writesto(cmd, stdout) write(in, stdin)