keyboard input device: Fix 64 bit debug build.

This commit is contained in:
Michael Lotz
2015-04-23 22:50:10 +02:00
parent 26bebb13a1
commit c14658c763
@@ -313,8 +313,8 @@ KeyboardDevice::_ControlThread()
uint32 keycode = keyInfo.keycode; uint32 keycode = keyInfo.keycode;
bool isKeyDown = keyInfo.is_keydown; bool isKeyDown = keyInfo.is_keydown;
LOG_EVENT("KB_READ: %Ld, %02x, %02lx\n", keyInfo.timestamp, isKeyDown, LOG_EVENT("KB_READ: %" B_PRIdBIGTIME ", %02x, %02" B_PRIx32 "\n",
keycode); keyInfo.timestamp, isKeyDown, keycode);
if (keycode == 0) if (keycode == 0)
continue; continue;
@@ -681,7 +681,8 @@ KeyboardInputDevice::Control(const char* name, void* cookie,
uint32 command, BMessage* message) uint32 command, BMessage* message)
{ {
KID_CALLED(); KID_CALLED();
TRACE("KeyboardInputDevice::Control(%s, code: %lu)\n", name, command); TRACE("KeyboardInputDevice::Control(%s, code: %" B_PRIu32 ")\n", name,
command);
if (command == B_NODE_MONITOR) if (command == B_NODE_MONITOR)
_HandleMonitor(message); _HandleMonitor(message);