Fix: Argument for BM::exec()

This commit is contained in:
Matthias Beyer 2015-12-28 11:17:04 +01:00
parent 523e6f8f66
commit fda7fd56b9

View file

@ -43,7 +43,7 @@ fn main() {
debug!("Runtime : {:?}", &rt);
if let Some(matches) = rt.config.cli_matches.subcommand_matches("bm") {
let res = BM::new(&rt).exec(matches.subcommand_matches("bm").unwrap());
let res = BM::new(&rt).exec(matches);
info!("BM exited with {}", res);
} else {
info!("No commandline call...")