summaryrefslogtreecommitdiff
path: root/Userland/Applications/Debugger/main.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-06-03 22:49:37 +0200
committerAndreas Kling <kling@serenityos.org>2021-06-03 22:50:21 +0200
commitbf8fd4c1931e9bfa72a3c05dec3de72ea95871d3 (patch)
treeacaa6a9ee59e7541438437c32f0ff497e98966c0 /Userland/Applications/Debugger/main.cpp
parent43e7181ec8a0152a046db0ad3e2915c4a2f69e70 (diff)
downloadserenity-bf8fd4c1931e9bfa72a3c05dec3de72ea95871d3.zip
Everywhere: Remove accidental '\n' from various outln() invocations
Also convert outln(stderr, ...) to warnln(...)
Diffstat (limited to 'Userland/Applications/Debugger/main.cpp')
-rw-r--r--Userland/Applications/Debugger/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Debugger/main.cpp b/Userland/Applications/Debugger/main.cpp
index 69c72809b0..dd8068628d 100644
--- a/Userland/Applications/Debugger/main.cpp
+++ b/Userland/Applications/Debugger/main.cpp
@@ -83,7 +83,7 @@ static bool handle_backtrace_command(const PtraceRegisters& regs)
{
auto ebp_val = regs.ebp;
auto eip_val = regs.eip;
- outln("Backtrace:\n");
+ outln("Backtrace:");
while (g_debug_session->peek((u32*)eip_val).has_value() && g_debug_session->peek((u32*)ebp_val).has_value()) {
auto eip_symbol = g_debug_session->symbolicate(eip_val);
auto source_position = g_debug_session->get_source_position(eip_val);