Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GyulyVGC committed Mar 4, 2024
1 parent f5bf317 commit 07822d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform/linux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ fn get_all_processes() -> Vec<Process> {
fn build_inode_process_map(processes: Vec<Process>) -> HashMap<u64, PidName> {
let mut map: HashMap<u64, PidName> = HashMap::new();
for proc in processes {
println!("P: {process:?}");
println!("P: {proc:?}");
let stat = rustix::fs::openat(
&proc.fd,
"stat",
Expand Down

0 comments on commit 07822d6

Please sign in to comment.