Reformat code

This commit is contained in:
Jordi Boggiano 2013-12-27 10:54:48 +01:00
parent 040c028089
commit 8c7e8c58c3

10
env/env.rs vendored
View file

@ -191,11 +191,11 @@ fn main() {
match opts.program {
[ref prog, ..args] => {
match std::run::process_status(prog.as_slice(), args.as_slice()) {
Some(exit) =>
match exit {
std::io::process::ExitStatus(status) => std::os::set_exit_status(status),
_ => std::os::set_exit_status(1)
},
Some(exit) =>
std::os::set_exit_status(match exit {
std::io::process::ExitStatus(s) => s,
_ => 1
}),
None => std::os::set_exit_status(1)
}
}