usb: fix format string
fDebugChunkSize is an uint32. Signed-off-by: Paweł Dziepak <pdziepak@quarnos.org>
This commit is contained in:
parent
ec8fc5ee39
commit
5fa80ab691
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user