diff --git a/build.rs b/build.rs index adebd659ade..4088bbcf89f 100644 --- a/build.rs +++ b/build.rs @@ -9,9 +9,7 @@ fn main() { return; } res.compile() - .map_err(|e| { - println!("cargo:warning=Failed to compile Windows resources: {e}"); - }) + .map_err(|e| println!("cargo:warning=Failed to compile Windows resources: {e}")) .ok(); } }