RemoteHWInterface: Fix 64 bit build with tracing enabled.

This commit is contained in:
Michael Lotz
2017-11-21 22:18:17 +01:00
parent 82873c6ece
commit ebf043b962
@@ -238,7 +238,8 @@ RemoteHWInterface::_EventThread()
return result; return result;
} }
TRACE("got message code %u with %lu bytes\n", code, message.DataLeft()); TRACE("got message code %" B_PRIu16 " with %" B_PRIu32 " bytes\n", code,
message.DataLeft());
if (code >= RP_MOUSE_MOVED && code <= RP_MODIFIERS_CHANGED) { if (code >= RP_MOUSE_MOVED && code <= RP_MODIFIERS_CHANGED) {
// an input event, dispatch to the event stream // an input event, dispatch to the event stream