mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-10 01:59:31 +00:00
KeyboardDevice: Use dbg() instead of dbgprintf()
This commit is contained in:
parent
3f95a7fc97
commit
bb9fba1fdd
Notes:
sideshowbarker
2024-07-19 09:01:33 +09:00
Author: https://github.com/supercomputer7
Commit: bb9fba1fdd
Pull-request: https://github.com/SerenityOS/serenity/pull/1290
1 changed files with 1 additions and 1 deletions
|
@ -501,7 +501,7 @@ void KeyboardDevice::handle_irq(RegisterState&)
|
|||
}
|
||||
|
||||
#ifdef KEYBOARD_DEBUG
|
||||
dbgprintf("Keyboard::handle_irq: %b %s\n", ch, pressed ? "down" : "up");
|
||||
dbg() << "Keyboard::handle_irq: " << String::format("%b", ch) << " " << (pressed ? "down" : "up");
|
||||
#endif
|
||||
switch (ch) {
|
||||
case 0x38:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue