diff options
author | 1998-12-22 10:43:37 +0000 | |
---|---|---|
committer | 1998-12-22 10:43:37 +0000 | |
commit | c4ac5d15d3ef5c985fd54c8fd1e74cc9da38be8d (patch) | |
tree | 564ff193c57ef921ca79acf033fc08ccff7d6468 /sys/kern/vfs_subr.c | |
parent | range check signal [] conversions (diff) | |
download | wireguard-openbsd-c4ac5d15d3ef5c985fd54c8fd1e74cc9da38be8d.tar.xz wireguard-openbsd-c4ac5d15d3ef5c985fd54c8fd1e74cc9da38be8d.zip |
deconfuse vprint, print holdcount, not refcount when we are talking about holdcnt
Diffstat (limited to 'sys/kern/vfs_subr.c')
-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 c75f30c2972..b66b1b121d3 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_subr.c,v 1.28 1998/12/10 21:46:58 art Exp $ */ +/* $OpenBSD: vfs_subr.c,v 1.29 1998/12/22 10:43:37 art Exp $ */ /* $NetBSD: vfs_subr.c,v 1.53 1996/04/22 01:39:13 christos Exp $ */ /* @@ -1246,7 +1246,7 @@ vprint(label, vp) if (label != NULL) printf("%s: ", label); - printf("type %s, usecount %d, writecount %d, refcount %ld,", + printf("type %s, usecount %d, writecount %d, holdcount %ld,", typename[vp->v_type], vp->v_usecount, vp->v_writecount, vp->v_holdcnt); buf[0] = '\0'; |