diff options
author | Andreas Kling <kling@serenityos.org> | 2021-06-03 22:49:37 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-03 22:50:21 +0200 |
commit | bf8fd4c1931e9bfa72a3c05dec3de72ea95871d3 (patch) | |
tree | acaa6a9ee59e7541438437c32f0ff497e98966c0 /Userland/Applications | |
parent | 43e7181ec8a0152a046db0ad3e2915c4a2f69e70 (diff) | |
download | serenity-bf8fd4c1931e9bfa72a3c05dec3de72ea95871d3.zip |
Everywhere: Remove accidental '\n' from various outln() invocations
Also convert outln(stderr, ...) to warnln(...)
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/Debugger/main.cpp | 2 |
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); |