summaryrefslogtreecommitdiffstats
path: root/sys/gnu/fs
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2009-06-10 14:24:31 +0000
committerkib <kib@FreeBSD.org>2009-06-10 14:24:31 +0000
commit754aba6b979a17d60b453a557217976a7abdafef (patch)
tree995ed8d225f5d8ee52e0f22ff3e336cc6a203291 /sys/gnu/fs
parent2a37bc559bc0ddf30ffe24c4c169cf3905ef0339 (diff)
downloadFreeBSD-src-754aba6b979a17d60b453a557217976a7abdafef.zip
FreeBSD-src-754aba6b979a17d60b453a557217976a7abdafef.tar.gz
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
Diffstat (limited to 'sys/gnu/fs')
-rw-r--r--sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c2
1 files changed, 1 insertions, 1 deletions
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;
OpenPOWER on IntegriCloud