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

chown: Fix clippy warning to fix CI

This commit is contained in:
Jan Verbeek 2021-09-10 18:56:12 +02:00
parent 75e5c42e40
commit d05410383f

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()),
))?; ));
} }
} }
}) })