aboutsummaryrefslogtreecommitdiffstats
path: root/test/termios.rs
diff options
context:
space:
mode:
Diffstat (limited to 'test/termios.rs')
-rw-r--r--test/termios.rs4
1 files changed, 2 insertions, 2 deletions
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"),
};
}