diff options
Diffstat (limited to 'imp.ha')
| -rw-r--r-- | imp.ha | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)?; |
