diff options
author | 2007-02-13 17:04:14 +0000 | |
---|---|---|
committer | 2007-02-13 17:04:14 +0000 | |
commit | f63a9322f9716e9d0b5038c485f7eff9e03e2252 (patch) | |
tree | 6d01c8df971db958c090cd1b1e974fbf2cf136a5 | |
parent | zap unused CVS_ISDIR() and CVS_ISFILE() macros. OK joris@. (diff) | |
download | wireguard-openbsd-f63a9322f9716e9d0b5038c485f7eff9e03e2252.tar.xz wireguard-openbsd-f63a9322f9716e9d0b5038c485f7eff9e03e2252.zip |
fix ddb buf print
-rw-r--r-- | sys/kern/vfs_subr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index f7973cf448f..0e578357804 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_subr.c,v 1.135 2006/11/20 12:52:54 tom Exp $ */ +/* $OpenBSD: vfs_subr.c,v 1.136 2007/02/13 17:04:14 mickey Exp $ */ /* $NetBSD: vfs_subr.c,v 1.53 1996/04/22 01:39:13 christos Exp $ */ /* @@ -2280,9 +2280,9 @@ vfs_buf_print(struct buf *bp, int full, int (*pr)(const char *, ...)) bp->b_vp, bp->b_lblkno, bp->b_blkno, bp->b_dev, bp->b_proc, bp->b_error, bp->b_flags, B_BITS); - (*pr)(" bufsize 0x%lx bcount 0x%lx resid 0x%zx sync 0x%x\n" + (*pr)(" bufsize 0x%lx bcount 0x%lx resid 0x%lx sync 0x%x\n" " data %p saveaddr %p dep %p iodone %p\n", - bp->b_bufsize, bp->b_bcount, bp->b_resid, bp->b_synctime, + bp->b_bufsize, bp->b_bcount, (long)bp->b_resid, bp->b_synctime, bp->b_data, bp->b_saveaddr, LIST_FIRST(&bp->b_dep), bp->b_iodone); (*pr)(" dirty {off 0x%x end 0x%x} valid {off 0x%x end 0x%x}\n", |