1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 03:57:44 +00:00

Merge pull request #2649 from blyxxyz/chown-clippy

chown: Fix clippy warning to fix CI
This commit is contained in:
Sylvestre Ledru 2021-09-10 19:12:35 +02:00 committed by GitHub
commit ce050ca369
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -199,7 +199,7 @@ fn parse_spec(spec: &str, sep: char) -> UResult<(Option<u32>, Option<u32>)> {
return Err(USimpleError::new( return Err(USimpleError::new(
1, 1,
format!("invalid user: {}", spec.quote()), format!("invalid user: {}", spec.quote()),
))?; ));
} }
} }
}) })