Fix clippy lint

This commit is contained in:
Anthony Ramine 2023-11-16 18:54:22 +01:00 committed by Alessandro Ghedini
parent cdb76dcba2
commit d7a13a8468
1 changed files with 1 additions and 1 deletions

View File

@ -667,7 +667,7 @@ fn main() {
if let Some(sysroot) = &config.env.sysroot {
builder = builder
.clang_arg("--sysroot")
.clang_arg(&sysroot.display().to_string());
.clang_arg(sysroot.display().to_string());
}
match &*config.target {