From 9b8e5185dad3ecdabe57dde42a984ea7f1ce295c Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Thu, 20 Nov 2014 10:50:35 +0100 Subject: [PATCH] UserlandFS: 64bit fix. --- .../file_systems/userlandfs/private/RequestPort.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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