diff options
| -rw-r--r-- | mrblib/io.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mrblib/io.rb b/mrblib/io.rb index 990a4b92d..1fcd44b28 100644 --- a/mrblib/io.rb +++ b/mrblib/io.rb @@ -282,7 +282,7 @@ end STDIN = IO.open(0, "r") STDOUT = IO.open(1, "w") -STDERR = IO.open(1, "w") +STDERR = IO.open(2, "w") $stdin = STDIN $stdout = STDOUT |
