mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
AK: Remove custom %b format string specifier
This was a non-standard specifier alias for %02x. This patch replaces all uses of it with new-style formatting functions instead.
This commit is contained in:
@@ -296,7 +296,7 @@ void KeyboardDevice::irq_handle_byte_read(u8 byte)
|
||||
}
|
||||
|
||||
#ifdef KEYBOARD_DEBUG
|
||||
dbg() << "Keyboard::irq_handle_byte_read: " << String::format("%b", ch) << " " << (pressed ? "down" : "up");
|
||||
dbgln("Keyboard::irq_handle_byte_read: {:#02x} {}", ch, (pressed ? "down" : "up"));
|
||||
#endif
|
||||
switch (ch) {
|
||||
case 0x38:
|
||||
|
||||
Reference in New Issue
Block a user