From 5fa80ab69177a235fb4cb9cb71922bca5211799e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Dziepak?= Date: Tue, 2 Sep 2014 23:33:55 +0200 Subject: [PATCH] usb: fix format string MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fDebugChunkSize is an uint32. Signed-off-by: Paweł Dziepak --- src/add-ons/kernel/bus_managers/usb/PhysicalMemoryAllocator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-ons/kernel/bus_managers/usb/PhysicalMemoryAllocator.cpp b/src/add-ons/kernel/bus_managers/usb/PhysicalMemoryAllocator.cpp index 994e87760c..721073be4a 100644 --- a/src/add-ons/kernel/bus_managers/usb/PhysicalMemoryAllocator.cpp +++ b/src/add-ons/kernel/bus_managers/usb/PhysicalMemoryAllocator.cpp @@ -136,7 +136,7 @@ PhysicalMemoryAllocator::Allocate(size_t size, void **logicalAddress, if (debug_debugger_running()) { if (size > fDebugChunkSize) { kprintf("usb allocation of %" B_PRIuSIZE - " does not fit debug chunk size %" B_PRIuSIZE "!\n", + " does not fit debug chunk size %" B_PRIu32 "!\n", size, fDebugChunkSize); return B_NO_MEMORY; }