Fix incorrect alignment for if
statement.
This commit is contained in:
parent
ae3ed31155
commit
a147a9d01b
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user