From 40febd7900c20eca94dab15951adb234d516cbe2 Mon Sep 17 00:00:00 2001 From: Alexander Bayandin Date: Sat, 4 Jan 2025 15:54:47 +0000 Subject: [PATCH] Fix clippy warnings on macOS --- compute_tools/src/bin/compute_ctl.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/compute_tools/src/bin/compute_ctl.rs b/compute_tools/src/bin/compute_ctl.rs index 26ae25ec2047..6ede5fdceb62 100644 --- a/compute_tools/src/bin/compute_ctl.rs +++ b/compute_tools/src/bin/compute_ctl.rs @@ -428,6 +428,7 @@ fn start_postgres( let &ComputeSpec { swap_size_bytes, disk_quota_bytes, + #[cfg(target_os = "linux")] disable_lfc_resizing, .. } = &state.pspec.as_ref().unwrap().spec;