Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
segevfiner committed Jan 19, 2025
1 parent a60330b commit 83ea161
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ fn main() -> Result<()> {
} else if let Some(pid) = cli.wait {
let pid = Pid::from_u32(pid);
let mut system = System::new();
system.refresh_processes_specifics(ProcessesToUpdate::Some(&[pid]), true, ProcessRefreshKind::nothing());
system.refresh_processes_specifics(
ProcessesToUpdate::Some(&[pid]),
true,
ProcessRefreshKind::nothing(),
);

if let Some(process) = system.process(pid) {
process.wait();
Expand Down

0 comments on commit 83ea161

Please sign in to comment.