From c4dbefe0b4597740fcae84fc088e4d4159a59b13 Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Sun, 28 Apr 2013 03:32:53 +0200 Subject: [PATCH] Fix build with tracing turned on. --- src/add-ons/kernel/busses/usb/ehci.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/add-ons/kernel/busses/usb/ehci.cpp b/src/add-ons/kernel/busses/usb/ehci.cpp index 1a93c63a45..0d7c2a83d2 100644 --- a/src/add-ons/kernel/busses/usb/ehci.cpp +++ b/src/add-ons/kernel/busses/usb/ehci.cpp @@ -802,7 +802,8 @@ EHCI::SubmitIsochronous(Transfer *transfer) uint16 pg = 0; itd->buffer_phy[pg] = currentPhy & 0xfffff000; uint32 offset = currentPhy & 0xfff; - TRACE("isochronous created itd, filling it with phy %lx\n", currentPhy); + TRACE("isochronous created itd, filling it with phy %" B_PRIxPHYSADDR + "\n", currentPhy); for (int32 i = 0; i < 8 && dataLength > 0; i++) { size_t length = min_c(dataLength, packetSize); itd->token[i] = (EHCI_ITD_STATUS_ACTIVE << EHCI_ITD_STATUS_SHIFT)