diff options
author | Stefan Fritsch <sf@cvs.openbsd.org> | 2013-10-02 21:29:22 +0000 |
---|---|---|
committer | Stefan Fritsch <sf@cvs.openbsd.org> | 2013-10-02 21:29:22 +0000 |
commit | 329f07393932927a5841bdb3f97b300918b0841d (patch) | |
tree | d10d238b07a66f6ad7ddec2e3d64c43a9420414b /sys/kern | |
parent | b68baeeb9e0f2e1c72cb884246857d064b987b6b (diff) |
format string fix: b_flags is long
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/vfs_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index 147138c357d..737c750128d 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_subr.c,v 1.207 2013/10/01 20:15:56 sf Exp $ */ +/* $OpenBSD: vfs_subr.c,v 1.208 2013/10/02 21:29:21 sf Exp $ */ /* $NetBSD: vfs_subr.c,v 1.53 1996/04/22 01:39:13 christos Exp $ */ /* @@ -2157,7 +2157,7 @@ vfs_buf_print(void *b, int full, struct buf *bp = b; (*pr)(" vp %p lblkno 0x%llx blkno 0x%llx dev 0x%x\n" - " proc %p error %d flags %b\n", + " proc %p error %d flags %lb\n", bp->b_vp, (int64_t)bp->b_lblkno, (int64_t)bp->b_blkno, bp->b_dev, bp->b_proc, bp->b_error, bp->b_flags, B_BITS); |