summaryrefslogtreecommitdiff
path: root/src/ui.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2023-10-20 08:49:20 +0200
committerSanto Cariotti <santo@dcariotti.me>2023-10-20 08:50:21 +0200
commitcd4920a2903656a9fdda6ebc99ac6a0663095d83 (patch)
tree1fca27fd7b666099e2542e50c11aae9e80f6dab2 /src/ui.rs
parent4926d71dacff261e7de1dfea4a1255c6b97cee46 (diff)
Use `name` instead of `rax` for showing the syscall name
Diffstat (limited to 'src/ui.rs')
-rw-r--r--src/ui.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui.rs b/src/ui.rs
index 1fe15e8..b7e342d 100644
--- a/src/ui.rs
+++ b/src/ui.rs
@@ -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(&reg.rax()) {
+ if !filters.is_empty() && !filters.contains(&reg.name()) {
continue;
}
self.add_line(reg);