UserlandFS: 64bit fix.
This commit is contained in:
@@ -85,14 +85,14 @@ RequestPort::SendRequest(RequestAllocator* allocator)
|
|||||||
//PRINT(("RequestPort::SendRequest(%lu)\n", allocator->GetRequest()->GetType()));
|
//PRINT(("RequestPort::SendRequest(%lu)\n", allocator->GetRequest()->GetType()));
|
||||||
#if USER && !KERNEL_EMU
|
#if USER && !KERNEL_EMU
|
||||||
if (!is_userland_request(allocator->GetRequest()->GetType())) {
|
if (!is_userland_request(allocator->GetRequest()->GetType())) {
|
||||||
ERROR(("RequestPort::SendRequest(%lu): request is not a userland "
|
ERROR(("RequestPort::SendRequest(%" B_PRId32 "): request is not a "
|
||||||
"request\n", allocator->GetRequest()->GetType()));
|
"userland request\n", allocator->GetRequest()->GetType()));
|
||||||
debugger("Request is not a userland request.");
|
debugger("Request is not a userland request.");
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
if (!is_kernel_request(allocator->GetRequest()->GetType())) {
|
if (!is_kernel_request(allocator->GetRequest()->GetType())) {
|
||||||
ERROR(("RequestPort::SendRequest(%lu): request is not a kernel "
|
ERROR(("RequestPort::SendRequest(%" B_PRId32 "): request is not a "
|
||||||
"request\n", allocator->GetRequest()->GetType()));
|
"kernel request\n", allocator->GetRequest()->GetType()));
|
||||||
debugger("Request is not a kernel request.");
|
debugger("Request is not a kernel request.");
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user