From 0f9d1623b177322cfccb52e69a886bb1a0495213 Mon Sep 17 00:00:00 2001 From: Julian Hurst Date: Wed, 10 May 2023 16:00:29 +0200 Subject: Update code (hare api changes) --- imp.ha | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)?; -- cgit v1.2.3