From 581a586f95babb2d1107d711f2fb1623a0d110a3 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Sun, 16 Jun 2019 23:08:36 -0400 Subject: [PATCH] XHCI: Change ADDR print to PHYSADDR to appease GCC. --- src/add-ons/kernel/busses/usb/xhci.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/add-ons/kernel/busses/usb/xhci.cpp b/src/add-ons/kernel/busses/usb/xhci.cpp index 474e39d0ee..6f365e5954 100644 --- a/src/add-ons/kernel/busses/usb/xhci.cpp +++ b/src/add-ons/kernel/busses/usb/xhci.cpp @@ -2409,12 +2409,12 @@ XHCI::HandleTransferComplete(xhci_trb* trb) release_sem_etc(fFinishTransfersSem, 1, B_DO_NOT_RESCHEDULE); TRACE("HandleTransferComplete td %p done\n", td); } else { - TRACE_ERROR("successful TRB 0x%" B_PRIxADDR " was found, but it wasn't " + TRACE_ERROR("successful TRB 0x%" B_PRIxPHYSADDR " was found, but it wasn't " "the last in the TD!\n", source); } return; } - TRACE_ERROR("TRB 0x%" B_PRIxADDR " was not found in the endpoint!\n", source); + TRACE_ERROR("TRB 0x%" B_PRIxPHYSADDR " was not found in the endpoint!\n", source); }