summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--mrblib/io.rb2
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