From 611a9176998bb28bf2f8be8be3922c5ac9c0baed Mon Sep 17 00:00:00 2001 From: Hendrik Sollich Date: Wed, 11 Sep 2024 23:43:53 +0200 Subject: [PATCH] build: fix clippy warning --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 8ab23d7..1f2cf15 100644 --- a/build.rs +++ b/build.rs @@ -21,7 +21,7 @@ fn main() { // `cc` doesn't try to pick up on this automatically, but `clang` needs it to // generate a "correct" Objective-C symbol table which better matches XCode. // See https://github.com/h4llow3En/mac-notification-sys/issues/45. - .flag(&format!("-mmacos-version-min={}", min_version)) + .flag(format!("-mmacos-version-min={}", min_version)) .compile("notify"); println!("cargo:rerun-if-env-changed={}", DEPLOYMENT_TARGET_VAR);