diff options
author | kib <kib@FreeBSD.org> | 2009-06-10 14:24:31 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2009-06-10 14:24:31 +0000 |
commit | 754aba6b979a17d60b453a557217976a7abdafef (patch) | |
tree | 995ed8d225f5d8ee52e0f22ff3e336cc6a203291 /sys/kern | |
parent | 2a37bc559bc0ddf30ffe24c4c169cf3905ef0339 (diff) | |
download | FreeBSD-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/kern')
-rw-r--r-- | sys/kern/uipc_mqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |