diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-29 07:12:13 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-29 07:12:13 +0000 |
commit | 64d0d25607fc8ee08207b1252a6321547c686967 (patch) | |
tree | 073a62def07ff79e8a60371100df390533072ae6 /sys/miscfs/union/union_vnops.c | |
parent | 92383d4847f9886583809f9d430a3411aa6e925c (diff) |
sync
Diffstat (limited to 'sys/miscfs/union/union_vnops.c')
-rw-r--r-- | sys/miscfs/union/union_vnops.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/miscfs/union/union_vnops.c b/sys/miscfs/union/union_vnops.c index 5124de80be2..77dfffc6982 100644 --- a/sys/miscfs/union/union_vnops.c +++ b/sys/miscfs/union/union_vnops.c @@ -1,5 +1,5 @@ -/* $OpenBSD: union_vnops.c,v 1.4 1996/05/22 12:04:37 deraadt Exp $ */ -/* $NetBSD: union_vnops.c,v 1.30 1996/05/13 07:13:23 mrg Exp $ */ +/* $OpenBSD: union_vnops.c,v 1.5 1996/05/29 07:12:12 deraadt Exp $ */ +/* $NetBSD: union_vnops.c,v 1.30.4.1 1996/05/25 22:10:14 jtc Exp $ */ /* * Copyright (c) 1992, 1993, 1994 The Regents of the University of California. @@ -1726,9 +1726,8 @@ union_print(v) } */ *ap = v; struct vnode *vp = ap->a_vp; - printf("\ttag VT_UNION, vp=%x, uppervp=%x, lowervp=%x\n", - (unsigned int) vp, (unsigned int) UPPERVP(vp), - (unsigned int) LOWERVP(vp)); + printf("\ttag VT_UNION, vp=%p, uppervp=%p, lowervp=%p\n", + vp, UPPERVP(vp), LOWERVP(vp)); if (UPPERVP(vp)) vprint("uppervp", UPPERVP(vp)); if (LOWERVP(vp)) |