diff options
| author | Julian Hurst <ark@mansus.space> | 2023-05-10 16:00:29 +0200 |
|---|---|---|
| committer | Julian Hurst <ark@mansus.space> | 2023-05-10 16:00:29 +0200 |
| commit | 0f9d1623b177322cfccb52e69a886bb1a0495213 (patch) | |
| tree | ba003a997808ed2219ab574fe1fc5608e6c9fbef /imp.ha | |
| parent | 84c4042ac883ac5bdc0e281cbdceae864ca6eb75 (diff) | |
| download | imp-0f9d1623b177322cfccb52e69a886bb1a0495213.tar.gz | |
Update code (hare api changes)
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)?; |
