diff options
author | 2007-04-15 12:54:08 +0000 | |
---|---|---|
committer | 2007-04-15 12:54:08 +0000 | |
commit | bdfb579b064c33625efa7d1965d1c45fa010e23e (patch) | |
tree | 9e2101b4377f0b3a59f13f7b4831484ac52f87c7 /sys/uvm/uvm_km.c | |
parent | Use the right types for calculating the object offset. (diff) | |
download | wireguard-openbsd-bdfb579b064c33625efa7d1965d1c45fa010e23e.tar.xz wireguard-openbsd-bdfb579b064c33625efa7d1965d1c45fa010e23e.zip |
One more voff_t in the right place.
miod@ ok
Diffstat (limited to 'sys/uvm/uvm_km.c')
-rw-r--r-- | sys/uvm/uvm_km.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/uvm/uvm_km.c b/sys/uvm/uvm_km.c index f9c4a7105bd..338f52b0687 100644 --- a/sys/uvm/uvm_km.c +++ b/sys/uvm/uvm_km.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_km.c,v 1.60 2007/04/15 11:29:33 art Exp $ */ +/* $OpenBSD: uvm_km.c,v 1.61 2007/04/15 12:54:08 art Exp $ */ /* $NetBSD: uvm_km.c,v 1.42 2001/01/14 02:10:01 thorpej Exp $ */ /* @@ -262,7 +262,7 @@ void uvm_km_pgremove(struct uvm_object *uobj, vaddr_t start, vaddr_t end) { struct vm_page *pp; - vaddr_t curoff; + voff_t curoff; UVMHIST_FUNC("uvm_km_pgremove"); UVMHIST_CALLED(maphist); KASSERT(uobj->pgops == &aobj_pager); |