From 97ef04223a0963014e06646c3e8cea6e888dbb89 Mon Sep 17 00:00:00 2001 From: Sebastian Streich Date: Wed, 29 Jan 2025 16:58:58 +0100 Subject: [PATCH] fix build issues on unix platforms --- extension/bridge/src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/bridge/src/commands.rs b/extension/bridge/src/commands.rs index ef58396521..29a89f6217 100644 --- a/extension/bridge/src/commands.rs +++ b/extension/bridge/src/commands.rs @@ -141,5 +141,5 @@ fn get_parent_pid() -> u32 { #[cfg(any(target_os = "macos", target_os = "linux"))] fn get_parent_pid() -> u32 { - return os::unix::process::parent_id; + return std::os::unix::process::parent_id(); }