* Fixed broken build with TRACE_PS2 defined as reported by Pieter.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36706 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2010-05-07 07:56:26 +00:00
parent c92efcc0eb
commit 51576f91e8

View File

@ -234,8 +234,8 @@ read_keyboard_packet(raw_key_info *packet, bool isDebugger)
return B_ERROR;
}
TRACE("ps2: read_keyboard_packet: scancode: %x, keydown: %s\n",
packet->scancode, packet->is_keydown ? "true" : "false");
TRACE("ps2: read_keyboard_packet: keycode: %" B_PRIx32 ", keydown: %s\n",
packet->keycode, packet->is_keydown ? "true" : "false");
return B_OK;
}