From 0265cf890601f23ce2b196617f90b309690f3d0c Mon Sep 17 00:00:00 2001 From: Martin Cracauer Date: Thu, 29 Dec 2005 21:34:49 +0000 Subject: This is the style-fix for my previous commit. Sorry for the delay, I forgot about it. --- sys/gnu/fs/ext2fs/ext2_vnops.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/sys/gnu/fs/ext2fs/ext2_vnops.c b/sys/gnu/fs/ext2fs/ext2_vnops.c index 4a8482e9145a..c755f66ed2f6 100644 --- a/sys/gnu/fs/ext2fs/ext2_vnops.c +++ b/sys/gnu/fs/ext2fs/ext2_vnops.c @@ -235,10 +235,6 @@ ext2_create(ap) return (0); } -/* - * Open called. - */ - static int ext2_open(ap) struct vop_open_args /* { @@ -248,8 +244,6 @@ ext2_open(ap) struct thread *a_td; } */ *ap; { - struct vnode *vp = ap->a_vp; - struct inode *ip = VTOI(vp); if (ap->a_vp->v_type == VBLK || ap->a_vp->v_type == VCHR) return (EOPNOTSUPP); @@ -261,7 +255,7 @@ ext2_open(ap) (ap->a_mode & (FWRITE | O_APPEND)) == FWRITE) return (EPERM); - vnode_create_vobject(ap->a_vp, ip->i_size, ap->a_td); + vnode_create_vobject(ap->a_vp, VTOI(ap->a_vp)->i_size, ap->a_td); return (0); } -- cgit v1.3