From d6da640860d3edbcea5ad1e83f573d38e71037c3 Mon Sep 17 00:00:00 2001 From: Konstantin Belousov 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 5ed14417bc3c..2a5028c3d027 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.2.3