From ce30d635e3bd49a8c0e8407b8b9ec6cc16d10e66 Mon Sep 17 00:00:00 2001 From: "Ithamar R. Adema" Date: Sun, 17 Oct 2010 20:00:21 +0000 Subject: [PATCH] * fix outdated commented dprintf (still useful for local debugging) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38990 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/vm/vm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/kernel/vm/vm.cpp b/src/system/kernel/vm/vm.cpp index 01a42ba4b8..ea42d3ae5a 100644 --- a/src/system/kernel/vm/vm.cpp +++ b/src/system/kernel/vm/vm.cpp @@ -3631,7 +3631,7 @@ vm_allocate_early(kernel_args* args, size_t virtualSize, size_t physicalSize, // find the vaddr to allocate at addr_t virtualBase = allocate_early_virtual(args, virtualSize, alignment); - //dprintf("vm_allocate_early: vaddr 0x%lx\n", virtualAddress); + //dprintf("vm_allocate_early: vaddr 0x%lx\n", virtualBase); // map the pages for (uint32 i = 0; i < PAGE_ALIGN(physicalSize) / B_PAGE_SIZE; i++) {