diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-05-12 22:54:48 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-05-12 22:54:48 +0000 |
| commit | 2b2df79fad97b3296bd4a5ad6f32c69c47d602a6 (patch) | |
| tree | c05f0f85e60d0096dcae7191aa454cdca3d1610a | |
| parent | 7e91d5f9263e60ac76e525afc99e073ba980d79c (diff) | |
Notes
| -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 f7ec4c2dd979..625c21dd003b 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); } - |
