From 754aba6b979a17d60b453a557217976a7abdafef Mon Sep 17 00:00:00 2001 From: kib Date: Wed, 10 Jun 2009 14:24:31 +0000 Subject: 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 --- sys/kern/uipc_mqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/kern/uipc_mqueue.c') 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 -- cgit v1.1