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