getopt: cleanup: add trailing commas

It is customary in rust to always use trailing commas. (also
suggested by rustfmt)

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2018-12-28 14:25:05 +01:00
parent 2767c5d39b
commit 7ebb173352
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ pub fn parse_arguments<T: AsRef<str>>(
Some(v) => {
data.push((name, v));
}
}
},
RawArgument::Argument { value } => {
rest.push(value);
}