shithub: mc

Download patch

ref: b4fabefd3735e8cabeec344abc9b016ec5626bf5
parent: 5077c6c598ab3d5eed864fca827ed45b5abdb66b
author: Andrew Chambers <andrewchamberss@gmail.com>
date: Thu Feb 11 14:51:49 EST 2016

std.Err pointed to std.In

--- a/lib/std/consts.myr
+++ b/lib/std/consts.myr
@@ -3,5 +3,5 @@
 pkg std =
 	const In	: fd = 0
 	const Out	: fd = 1
-	const Err	: fd = 1
+	const Err	: fd = 2
 ;;