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:
parent
e4d9bdc105
commit
d6da640860
@ -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;
|
||||
|
@ -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);
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user