diff options
author | cracauer <cracauer@FreeBSD.org> | 2005-12-29 21:34:49 +0000 |
---|---|---|
committer | cracauer <cracauer@FreeBSD.org> | 2005-12-29 21:34:49 +0000 |
commit | b7ab8cfc237720c0f9cf4674ef393acbf70a65bf (patch) | |
tree | eaffbbf7b33d7377ef93ed8f059d60d665be8e61 /sys | |
parent | c0024de32907c92d67d30f3021e22f5b989c6189 (diff) | |
download | FreeBSD-src-b7ab8cfc237720c0f9cf4674ef393acbf70a65bf.zip FreeBSD-src-b7ab8cfc237720c0f9cf4674ef393acbf70a65bf.tar.gz |
This is the style-fix for my previous commit. Sorry for the delay, I
forgot about it.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/gnu/fs/ext2fs/ext2_vnops.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/gnu/fs/ext2fs/ext2_vnops.c b/sys/gnu/fs/ext2fs/ext2_vnops.c index 4a8482e..c755f66 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); } |