From 541532342d65b916dcb1b610f449997e212ea943 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Tue, 13 May 2008 20:04:11 +0000 Subject: [PATCH] Fixed build with tracing turned on. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25483 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/vm/vm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/system/kernel/vm/vm.cpp b/src/system/kernel/vm/vm.cpp index 520182f005..b6e8a5f81c 100644 --- a/src/system/kernel/vm/vm.cpp +++ b/src/system/kernel/vm/vm.cpp @@ -1904,8 +1904,8 @@ _vm_map_file(team_id team, const char *name, void **_address, uint32 addressSpec // copy of a file at a given time, ie. later changes should not // make it into the mapped copy -- this will need quite some changes // to be done in a nice way - TRACE(("_vm_map_file(\"%s\", offset = %Ld, size = %lu, mapping %ld)\n", - path, offset, size, mapping)); + TRACE(("_vm_map_file(fd = %d, offset = %Ld, size = %lu, mapping %ld)\n", + fd, offset, size, mapping)); offset = ROUNDOWN(offset, B_PAGE_SIZE); size = PAGE_ALIGN(size);