mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:08:12 +00:00
LibDebug: Convert a bunch of dbg() to dbgln()
This commit is contained in:
parent
08190dd0ce
commit
d56f4f635a
5 changed files with 22 additions and 23 deletions
|
@ -53,8 +53,8 @@ Value evaluate(ReadonlyBytes bytes, const PtraceRegisters& regs)
|
|||
}
|
||||
|
||||
default:
|
||||
dbg() << "DWARF expr addr: " << (const void*)bytes.data();
|
||||
dbg() << "unsupported opcode: " << (u8)opcode;
|
||||
dbgln("DWARF expr addr: {}", (const void*)bytes.data());
|
||||
dbgln("unsupported opcode: {}", (u8)opcode);
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue