diff --git a/src/commands/ps.rs b/src/commands/ps.rs index be9efc1bb3..970a678447 100644 --- a/src/commands/ps.rs +++ b/src/commands/ps.rs @@ -28,12 +28,12 @@ impl WholeStreamCommand for PS { fn ps(args: CommandArgs, _registry: &CommandRegistry) -> Result { let system; - #[cfg(not(windows))] + #[cfg(linux)] { system = sysinfo::System::new(); } - #[cfg(windows)] + #[cfg(not(linux))] { let mut sy = sysinfo::System::new_with_specifics(RefreshKind::new().with_processes()); sy.refresh_processes();