diff options
Diffstat (limited to 'Userland/Applications/SystemMonitor')
-rw-r--r-- | Userland/Applications/SystemMonitor/ThreadStackWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/SystemMonitor/ThreadStackWidget.cpp b/Userland/Applications/SystemMonitor/ThreadStackWidget.cpp index d0ccef72a7..d544d29a48 100644 --- a/Userland/Applications/SystemMonitor/ThreadStackWidget.cpp +++ b/Userland/Applications/SystemMonitor/ThreadStackWidget.cpp @@ -79,7 +79,7 @@ void ThreadStackWidget::custom_event(Core::CustomEvent& event) StringBuilder builder; for (auto& symbol : completion_event.symbols()) { - builder.appendff("{:p}", symbol.address); + builder.appendff("{:p} {:30s}", symbol.address, symbol.object); if (!symbol.name.is_empty()) builder.appendff(" {}", symbol.name); builder.append('\n'); |