diff options
-rw-r--r-- | sys/ufs/ufs/ufs_vfsops.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/ufs/ufs/ufs_vfsops.c b/sys/ufs/ufs/ufs_vfsops.c index f7ec4c2..625c21d 100644 --- a/sys/ufs/ufs/ufs_vfsops.c +++ b/sys/ufs/ufs/ufs_vfsops.c @@ -191,11 +191,11 @@ ufs_init(vfsp) */ int ufs_fhtovp(mp, ufhp, vpp) - register struct mount *mp; + struct mount *mp; struct ufid *ufhp; struct vnode **vpp; { - register struct inode *ip; + struct inode *ip; struct vnode *nvp; int error; @@ -216,4 +216,3 @@ ufs_fhtovp(mp, ufhp, vpp) *vpp = nvp; return (0); } - |