summaryrefslogtreecommitdiff
path: root/imp.ha
diff options
context:
space:
mode:
Diffstat (limited to 'imp.ha')
-rw-r--r--imp.ha2
1 files changed, 1 insertions, 1 deletions
diff --git a/imp.ha b/imp.ha
index 1a5f7a4..72553b4 100644
--- a/imp.ha
+++ b/imp.ha
@@ -304,7 +304,7 @@ fn decrypt(file: str) ([]u8 | os::exec::error | io::error) = {
let pipe_stdout = os::exec::pipe();
os::exec::addfile(&cmd, os::stdout_file, pipe_stdout.1);
- os::exec::addfile(&cmd, os::stderr, os::exec::nullfd);
+ os::exec::addfile(&cmd, os::stderr_file, os::exec::nullfd);
let proc = os::exec::start(&cmd)?;
io::close(pipe_stdout.1)?;