mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 17:38:12 +00:00
Everywhere: Remove accidental '\n' from various outln() invocations
Also convert outln(stderr, ...) to warnln(...)
This commit is contained in:
parent
43e7181ec8
commit
bf8fd4c193
4 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue