From 3e95a135f67b52589957c14595ad3837c7f2f1e5 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 3 Apr 2013 02:43:29 -0500 Subject: actually, let's not reexport the termios stuff at the top level --- test/termios.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/termios.rs') diff --git a/test/termios.rs b/test/termios.rs index 7552373..3683cee 100644 --- a/test/termios.rs +++ b/test/termios.rs @@ -2,8 +2,8 @@ extern mod term; fn main () { match os::args()[1] { - ~"echo" => term::echo(true), - ~"noecho" => term::echo(false), + ~"echo" => term::ios::echo(true), + ~"noecho" => term::ios::echo(false), _ => fail!(~"unknown argument"), }; } -- cgit v1.2.3-54-g00ecf