Skip to content

Commit

Permalink
fix build issues on unix platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
strseb committed Feb 12, 2025
1 parent cfe2be7 commit 97ef042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/bridge/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

0 comments on commit 97ef042

Please sign in to comment.