clippy fix

This commit is contained in:
Anton-4 2022-06-20 20:13:45 +02:00
parent 10d6906264
commit 4d8317dbbb
No known key found for this signature in database
GPG Key ID: C954D6E0F9C0ABFD

View File

@ -45,12 +45,12 @@ fn main() {
"pub const WASI_LIBC_PATH: &str =",
&format!(
" \"{}\";",
out_file.to_str().unwrap().replace("\\", "\\\\")
out_file.to_str().unwrap().replace('\\', "\\\\")
),
"pub const WASI_COMPILER_RT_PATH: &str =",
&format!(
" \"{}\";",
compiler_rt_path.to_str().unwrap().replace("\\", "\\\\")
compiler_rt_path.to_str().unwrap().replace('\\', "\\\\")
),
"",
]