diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2009-08-14 20:55:06 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2009-08-14 20:55:06 +0000 |
commit | 31321762e2f18a8b0185b04f003f256a65fa9ecc (patch) | |
tree | e8df2bd9c9d4dfc3ebc07431be4acc22b5b4a394 /sys/ufs | |
parent | 981ccab132beeb15dbbe38cb41a5d15af3491f22 (diff) |
- fix function name in vprint()
ok otto@
Diffstat (limited to 'sys/ufs')
-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 /* |