summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Hurst <ark@mansus.space>2023-05-10 16:00:29 +0200
committerJulian Hurst <ark@mansus.space>2023-05-10 16:00:29 +0200
commit0f9d1623b177322cfccb52e69a886bb1a0495213 (patch)
treeba003a997808ed2219ab574fe1fc5608e6c9fbef
parent84c4042ac883ac5bdc0e281cbdceae864ca6eb75 (diff)
downloadimp-0f9d1623b177322cfccb52e69a886bb1a0495213.tar.gz
Update code (hare api changes)
-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)?;