diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2006-07-26 23:15:56 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2006-07-26 23:15:56 +0000 |
commit | f78c3a4873b7ac6d8542d8b1888e62f6390fafcd (patch) | |
tree | fdb46e44ed12285682117fce41ef9f58ad9a184b /sys/uvm/uvm_map_i.h | |
parent | e6e11ab4c6cceddb993fb4b1dda8f493f4e52b2c (diff) |
fix fmts for UVMHIST_LOG() entries making it more useful on 64bit archs; miod@ ok
Diffstat (limited to 'sys/uvm/uvm_map_i.h')
-rw-r--r-- | sys/uvm/uvm_map_i.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/uvm/uvm_map_i.h b/sys/uvm/uvm_map_i.h index 8927c6dfb73..3e51b8509d4 100644 --- a/sys/uvm/uvm_map_i.h +++ b/sys/uvm/uvm_map_i.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_map_i.h,v 1.17 2005/05/24 21:11:47 tedu Exp $ */ +/* $OpenBSD: uvm_map_i.h,v 1.18 2006/07/26 23:15:55 mickey Exp $ */ /* $NetBSD: uvm_map_i.h,v 1.18 2000/11/27 08:40:04 chs Exp $ */ /* @@ -169,7 +169,7 @@ uvm_unmap_p(map, start, end, p) vm_map_entry_t dead_entries; UVMHIST_FUNC("uvm_unmap"); UVMHIST_CALLED(maphist); - UVMHIST_LOG(maphist, " (map=0x%x, start=0x%x, end=0x%x)", + UVMHIST_LOG(maphist, " (map=%p, start=0x%lx, end=0x%lx)", map, start, end, 0); /* * work now done by helper functions. wipe the pmap's and then |