Enforce 79 column limit. Grr.

This commit is contained in:
Andrew Gallant
2017-03-31 15:59:04 -04:00
parent 1425d6735e
commit fc975af8e9
5 changed files with 15 additions and 14 deletions

View File

@@ -837,7 +837,7 @@ impl<'a> ArgMatches<'a> {
let caps = try!(re.captures(&max_filesize)
.ok_or("invalid format for max-filesize argument"));
let value = try!(caps[1].parse::<u64>().map_err(|err| err.to_string()));
let value = try!(caps[1].parse::<u64>().map_err(|err|err.to_string()));
let suffix = caps.get(2).map(|x| x.as_str());
match suffix {