diff --git a/src/add-ons/kernel/file_systems/userlandfs/private/RequestPort.cpp b/src/add-ons/kernel/file_systems/userlandfs/private/RequestPort.cpp index 14b9f1a78b..01a70d8001 100644 --- a/src/add-ons/kernel/file_systems/userlandfs/private/RequestPort.cpp +++ b/src/add-ons/kernel/file_systems/userlandfs/private/RequestPort.cpp @@ -85,14 +85,14 @@ RequestPort::SendRequest(RequestAllocator* allocator) //PRINT(("RequestPort::SendRequest(%lu)\n", allocator->GetRequest()->GetType())); #if USER && !KERNEL_EMU if (!is_userland_request(allocator->GetRequest()->GetType())) { - ERROR(("RequestPort::SendRequest(%lu): request is not a userland " - "request\n", allocator->GetRequest()->GetType())); + ERROR(("RequestPort::SendRequest(%" B_PRId32 "): request is not a " + "userland request\n", allocator->GetRequest()->GetType())); debugger("Request is not a userland request."); } #else if (!is_kernel_request(allocator->GetRequest()->GetType())) { - ERROR(("RequestPort::SendRequest(%lu): request is not a kernel " - "request\n", allocator->GetRequest()->GetType())); + ERROR(("RequestPort::SendRequest(%" B_PRId32 "): request is not a " + "kernel request\n", allocator->GetRequest()->GetType())); debugger("Request is not a kernel request."); } #endif