diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-09-05 19:22:24 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-09-05 19:22:24 +0000 |
commit | 480d1706d59e52bc1732a36d9e707e5f78efc705 (patch) | |
tree | f2b93dd854adb37feb4800d2748078c8ee9fde6b /sys/uvm | |
parent | ef3f8347e9f931903b5b1a60c38a4f0d6028828b (diff) |
use %ll instead of %q
Diffstat (limited to 'sys/uvm')
-rw-r--r-- | sys/uvm/uvm_swap.c | 6 | ||||
-rw-r--r-- | sys/uvm/uvm_vnode.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/uvm/uvm_swap.c b/sys/uvm/uvm_swap.c index 4eddeba5d8b..370573e78aa 100644 --- a/sys/uvm/uvm_swap.c +++ b/sys/uvm/uvm_swap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_swap.c,v 1.35 2001/08/31 15:26:18 mickey Exp $ */ +/* $OpenBSD: uvm_swap.c,v 1.36 2001/09/05 19:22:23 deraadt Exp $ */ /* $NetBSD: uvm_swap.c,v 1.37 2000/05/19 03:45:04 thorpej Exp $ */ /* @@ -1219,7 +1219,7 @@ swread(dev, uio, ioflag) { UVMHIST_FUNC("swread"); UVMHIST_CALLED(pdhist); - UVMHIST_LOG(pdhist, " dev=%x offset=%qx", dev, uio->uio_offset, 0, 0); + UVMHIST_LOG(pdhist, " dev=%x offset=%llx", dev, uio->uio_offset, 0, 0); return (physio(swstrategy, NULL, dev, B_READ, minphys, uio)); } @@ -1235,7 +1235,7 @@ swwrite(dev, uio, ioflag) { UVMHIST_FUNC("swwrite"); UVMHIST_CALLED(pdhist); - UVMHIST_LOG(pdhist, " dev=%x offset=%qx", dev, uio->uio_offset, 0, 0); + UVMHIST_LOG(pdhist, " dev=%x offset=%llx", dev, uio->uio_offset, 0, 0); return (physio(swstrategy, NULL, dev, B_WRITE, minphys, uio)); } diff --git a/sys/uvm/uvm_vnode.c b/sys/uvm/uvm_vnode.c index cb362452c27..f24605a1404 100644 --- a/sys/uvm/uvm_vnode.c +++ b/sys/uvm/uvm_vnode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_vnode.c,v 1.18 2001/08/11 10:57:22 art Exp $ */ +/* $OpenBSD: uvm_vnode.c,v 1.19 2001/09/05 19:22:23 deraadt Exp $ */ /* $NetBSD: uvm_vnode.c,v 1.33 2000/05/19 03:45:05 thorpej Exp $ */ /* @@ -287,7 +287,7 @@ uvn_attach(arg, accessprot) */ #ifdef DEBUG if (vp->v_type == VBLK) - printf("used_vnode_size = %qu\n", (long long)used_vnode_size); + printf("used_vnode_size = %llu\n", (long long)used_vnode_size); #endif /* |