diff options
author | 2010-07-02 02:08:53 +0000 | |
---|---|---|
committer | 2010-07-02 02:08:53 +0000 | |
commit | 7d49f3bbe423b3b1e00e2b1f85e071c21f4c7cc7 (patch) | |
tree | 8530b8f49f3ad3f5e7f28cf99157a025078311eb | |
parent | Disallow deleting non-leaf nodes. (diff) | |
download | wireguard-openbsd-7d49f3bbe423b3b1e00e2b1f85e071c21f4c7cc7.tar.xz wireguard-openbsd-7d49f3bbe423b3b1e00e2b1f85e071c21f4c7cc7.zip |
fix corrupt UVMHIST_LOG
-rw-r--r-- | sys/uvm/uvm_aobj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/uvm/uvm_aobj.c b/sys/uvm/uvm_aobj.c index dc1fe6c50f5..87ab9fd7782 100644 --- a/sys/uvm/uvm_aobj.c +++ b/sys/uvm/uvm_aobj.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_aobj.c,v 1.50 2010/04/30 21:56:39 oga Exp $ */ +/* $OpenBSD: uvm_aobj.c,v 1.51 2010/07/02 02:08:53 syuu Exp $ */ /* $NetBSD: uvm_aobj.c,v 1.39 2001/02/18 21:19:08 chs Exp $ */ /* @@ -821,7 +821,7 @@ uao_flush(struct uvm_object *uobj, voff_t start, voff_t stop, int flags) } UVMHIST_LOG(maphist, - "<- done, rv=%ld",retval,0,0,0); + "<- done, rv=TRUE",0,0,0,0); return (TRUE); } |