summaryrefslogtreecommitdiff
path: root/sys/ufs/ext2fs/ext2fs_inode.c
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>1999-08-17 14:20:47 +0000
committerArtur Grabowski <art@cvs.openbsd.org>1999-08-17 14:20:47 +0000
commit8c71828308114f53eebadaac7ccab374f9c9b17f (patch)
treeaa2104965983b14b58221e4c0192a2f1f858b388 /sys/ufs/ext2fs/ext2fs_inode.c
parent021ea3a03e3134534a28cad49334bba850e0e806 (diff)
we're lucky that the return values from VOP_INACTIVE are ignored
Diffstat (limited to 'sys/ufs/ext2fs/ext2fs_inode.c')
-rw-r--r--sys/ufs/ext2fs/ext2fs_inode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ext2fs/ext2fs_inode.c b/sys/ufs/ext2fs/ext2fs_inode.c
index a0cba46802d..9813965c3f4 100644
--- a/sys/ufs/ext2fs/ext2fs_inode.c
+++ b/sys/ufs/ext2fs/ext2fs_inode.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ext2fs_inode.c,v 1.6 1999/02/26 03:21:59 art Exp $ */
+/* $OpenBSD: ext2fs_inode.c,v 1.7 1999/08/17 14:20:46 art Exp $ */
/* $NetBSD: ext2fs_inode.c,v 1.1 1997/06/11 09:33:56 bouyer Exp $ */
/*
@@ -83,7 +83,7 @@ ext2fs_inactive(v)
register struct vnode *vp = ap->a_vp;
register struct inode *ip = VTOI(vp);
struct timespec ts;
- int error;
+ int error = 0;
extern int prtactive;
if (prtactive && vp->v_usecount != 0)