Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixupo
  • Loading branch information
youknowone committed Jun 21, 2025
commit dde43023980f8f079eb8fddc0aedebe1559b82b4
2 changes: 1 addition & 1 deletion vm/src/stdlib/posix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,7 @@ pub mod module {

if self.setsid {
// Note: POSIX_SPAWN_SETSID may not be available on all platforms
#[cfg(any(target_os = "linux"))]
#[cfg(target_os = "linux")]
{
flags |= 0x0080; // POSIX_SPAWN_SETSID value on Linux
}
Expand Down
Loading