usb: fix format string

fDebugChunkSize is an uint32.

Signed-off-by: Paweł Dziepak <pdziepak@quarnos.org>
This commit is contained in:
Paweł Dziepak 2014-09-02 23:33:55 +02:00
parent ec8fc5ee39
commit 5fa80ab691

View File

@ -136,7 +136,7 @@ PhysicalMemoryAllocator::Allocate(size_t size, void **logicalAddress,
if (debug_debugger_running()) { if (debug_debugger_running()) {
if (size > fDebugChunkSize) { if (size > fDebugChunkSize) {
kprintf("usb allocation of %" B_PRIuSIZE 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); size, fDebugChunkSize);
return B_NO_MEMORY; return B_NO_MEMORY;
} }