summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/fs/cd9660/cd9660_vnops.c2
-rw-r--r--sys/fs/msdosfs/msdosfs_vnops.c2
-rw-r--r--sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c2
-rw-r--r--sys/kern/uipc_mqueue.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/sys/fs/cd9660/cd9660_vnops.c b/sys/fs/cd9660/cd9660_vnops.c
index f22adb7..1170b67 100644
--- a/sys/fs/cd9660/cd9660_vnops.c
+++ b/sys/fs/cd9660/cd9660_vnops.c
@@ -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;
diff --git a/sys/fs/msdosfs/msdosfs_vnops.c b/sys/fs/msdosfs/msdosfs_vnops.c
index 409dc73..e62af02 100644
--- a/sys/fs/msdosfs/msdosfs_vnops.c
+++ b/sys/fs/msdosfs/msdosfs_vnops.c
@@ -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);
diff --git a/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c b/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c
index 9d86c95..80c9518 100644
--- a/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c
+++ b/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c
@@ -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;
diff --git a/sys/kern/uipc_mqueue.c b/sys/kern/uipc_mqueue.c
index 5ed1441..2a5028c 100644
--- a/sys/kern/uipc_mqueue.c
+++ b/sys/kern/uipc_mqueue.c
@@ -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
OpenPOWER on IntegriCloud