1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2026-01-18 03:01:06 +00:00

clippy: fix warnings introduced by Rust 1.74

This commit is contained in:
Daniel Hofstetter 2023-11-16 16:02:38 +01:00
parent 7ff4cb3f4e
commit 2f9fcf73fa
4 changed files with 8 additions and 10 deletions

View file

@ -88,7 +88,7 @@ impl Options {
#[uucore::main]
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
let args = args.collect_lossy();
let matches = match uu_app().try_get_matches_from(&args) {
let matches = match uu_app().try_get_matches_from(args) {
Ok(m) => m,
Err(e) => return Err(e.into()),
};