diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/mt-tool.rs | 3 | ||||
-rw-r--r-- | src/bin/mt-webface.rs | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/bin/mt-tool.rs b/src/bin/mt-tool.rs index b6763b2..c04d5ab 100644 --- a/src/bin/mt-tool.rs +++ b/src/bin/mt-tool.rs @@ -12,7 +12,6 @@ use std::io::Read; use std::fs::File; use std::path::Path; use std::time::Instant; -use std::process::exit; fn parse_modelica_files(paths: Vec<String>) { @@ -97,7 +96,7 @@ fn main() { _ => { println!("Missing or unimplemented command!"); println!("{}", matches.usage()); - exit(-1); + ::std::process::exit(-1); }, } } diff --git a/src/bin/mt-webface.rs b/src/bin/mt-webface.rs index 3b280e2..b35deec 100644 --- a/src/bin/mt-webface.rs +++ b/src/bin/mt-webface.rs @@ -10,7 +10,6 @@ extern crate log; use std::env; use std::collections::BTreeMap; -use std::process::exit; use std::path::Path; use getopts::Options; use pencil::Pencil; @@ -87,7 +86,7 @@ fn main() { Err(f) => { println!("{}\n", f.to_string()); print_usage(opts); - exit(-1); + ::std::process::exit(-1); } }; |