Fix incorrect alignment for if statement.

This commit is contained in:
Corey Farwell 2016-09-25 13:57:12 -04:00
parent ae3ed31155
commit a147a9d01b

View File

@ -235,7 +235,8 @@ pub fn main_args(args: &[String]) -> isize {
if matches.free.is_empty() {
println!("expected an input file to act on");
return 1;
} if matches.free.len() > 1 {
}
if matches.free.len() > 1 {
println!("only one input file may be specified");
return 1;
}