1
Fork 0
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:
Andreas Kling 2021-01-09 15:07:10 +01:00
parent 08190dd0ce
commit d56f4f635a
5 changed files with 22 additions and 23 deletions

View file

@ -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();
}
}