From 8d9e8ba5b70f37507b4e950e31c595a58861137e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Sat, 2 Jan 2010 18:34:42 +0000 Subject: [PATCH] Patch by Andreas Faerber (small changes by myself): * Fix compilation with tracing enabled. Thanks! Fixes ticket #5183. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34862 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/vm/vm.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/system/kernel/vm/vm.cpp b/src/system/kernel/vm/vm.cpp index 3f1a8fdb26..94aa479001 100644 --- a/src/system/kernel/vm/vm.cpp +++ b/src/system/kernel/vm/vm.cpp @@ -1088,8 +1088,9 @@ vm_map_physical_memory_vecs(team_id team, const char* name, void** _address, uint32 vecCount) { TRACE(("vm_map_physical_memory_vecs(team = %ld, \"%s\", virtual = %p, " - "spec = %ld, size = %lu, protection = %ld, phys = %#lx)\n", team, - name, _address, addressSpec, size, protection, physicalAddress)); + "spec = %ld, _size = %p, protection = %ld, vecs = %p, " + "vecCount = %ld)\n", team, name, _address, addressSpec, _size, + protection, vecs, vecCount)); if (!arch_vm_supports_protection(protection) || (addressSpec & B_MTR_MASK) != 0) {