[haiku-commits] r34862 - haiku/trunk/src/system/kernel/vm
- From: superstippi@xxxxxx
- To: haiku-commits@xxxxxxxxxxxxx
- Date: Sat, 2 Jan 2010 19:34:42 +0100 (CET)
Author: stippi
Date: 2010-01-02 19:34:42 +0100 (Sat, 02 Jan 2010)
New Revision: 34862
Changeset: http://dev.haiku-os.org/changeset/34862/haiku
Ticket: http://dev.haiku-os.org/ticket/5183
Modified:
haiku/trunk/src/system/kernel/vm/vm.cpp
Log:
Patch by Andreas Faerber (small changes by myself):
* Fix compilation with tracing enabled.
Thanks! Fixes ticket #5183.
Modified: haiku/trunk/src/system/kernel/vm/vm.cpp
===================================================================
--- haiku/trunk/src/system/kernel/vm/vm.cpp 2010-01-02 18:31:24 UTC (rev
34861)
+++ haiku/trunk/src/system/kernel/vm/vm.cpp 2010-01-02 18:34:42 UTC (rev
34862)
@@ -1088,8 +1088,9 @@
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) {
Other related posts:
- » [haiku-commits] r34862 - haiku/trunk/src/system/kernel/vm - superstippi