Fix r193923 by noting that type of a_fp is struct file *, not int.

It was assumed that r193923 was trivial change that cannot be done
wrong.

MFC after:	2 weeks
This commit is contained in:
Konstantin Belousov 2009-06-10 14:24:31 +00:00
parent e4d9bdc105
commit d6da640860
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=193924
4 changed files with 4 additions and 4 deletions

View File

@ -165,7 +165,7 @@ cd9660_open(ap)
int a_mode;
struct ucred *a_cred;
struct thread *a_td;
int a_fp;
struct file *a_fp;
} */ *ap;
{
struct vnode *vp = ap->a_vp;

View File

@ -214,7 +214,7 @@ msdosfs_open(ap)
int a_mode;
struct ucred *a_cred;
struct thread *a_td;
int a_fp;
struct file *a_fp;
} */ *ap;
{
struct denode *dep = VTODE(ap->a_vp);

View File

@ -198,7 +198,7 @@ _xfs_open(
int a_mode;
struct ucred *a_cred;
struct thread *a_td;
int a_fp;
struct file *a_fp;
} */ *ap)
{
int error;

View File

@ -1092,7 +1092,7 @@ struct vop_open_args {
int a_mode;
struct ucred *a_cred;
struct thread *a_td;
int a_fp;
struct file *a_fp;
};
#endif