diff options
author | 2009-08-14 20:55:05 +0000 | |
---|---|---|
committer | 2009-08-14 20:55:05 +0000 | |
commit | 93e87af99feb54ecbe9095ed3fb9701a4bde0d56 (patch) | |
tree | 37c4a5e0e24f5cf511d87cb12ab0abd07e236725 | |
parent | enable lisa(4); tested by Marco Knol; ok deraadt (diff) | |
download | wireguard-openbsd-93e87af99feb54ecbe9095ed3fb9701a4bde0d56.tar.xz wireguard-openbsd-93e87af99feb54ecbe9095ed3fb9701a4bde0d56.zip |
- fix function name in vprint()
ok otto@
-rw-r--r-- | sys/ufs/ufs/ufs_inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ufs/ufs_inode.c b/sys/ufs/ufs/ufs_inode.c index e4a92ef999c..0b14a34cf4d 100644 --- a/sys/ufs/ufs/ufs_inode.c +++ b/sys/ufs/ufs/ufs_inode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ufs_inode.c,v 1.37 2007/06/01 23:47:57 deraadt Exp $ */ +/* $OpenBSD: ufs_inode.c,v 1.38 2009/08/14 20:55:05 jasper Exp $ */ /* $NetBSD: ufs_inode.c,v 1.7 1996/05/11 18:27:52 mycroft Exp $ */ /* @@ -71,7 +71,7 @@ ufs_inactive(void *v) extern int prtactive; if (prtactive && vp->v_usecount != 0) - vprint("ffs_inactive: pushing active", vp); + vprint("ufs_inactive: pushing active", vp); #endif /* |