diff options
author | Santo Cariotti <santo@dcariotti.me> | 2023-10-20 08:49:20 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2023-10-20 08:50:21 +0200 |
commit | cd4920a2903656a9fdda6ebc99ac6a0663095d83 (patch) | |
tree | 1fca27fd7b666099e2542e50c11aae9e80f6dab2 /src/ui.rs | |
parent | 4926d71dacff261e7de1dfea4a1255c6b97cee46 (diff) |
Use `name` instead of `rax` for showing the syscall name
Diffstat (limited to 'src/ui.rs')
-rw-r--r-- | src/ui.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -85,7 +85,7 @@ impl UI { if let Some(reg) = trace_next(pid)? { have_to_print ^= true; if have_to_print { - if !filters.is_empty() && !filters.contains(®.rax()) { + if !filters.is_empty() && !filters.contains(®.name()) { continue; } self.add_line(reg); |