diff options
Diffstat (limited to 'sys/kern/kern_event.c')
-rw-r--r-- | sys/kern/kern_event.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_event.c b/sys/kern/kern_event.c index 46d57c9..4c85a2d1 100644 --- a/sys/kern/kern_event.c +++ b/sys/kern/kern_event.c @@ -60,7 +60,7 @@ static int kqueue_read(struct file *fp, struct uio *uio, struct ucred *cred, int flags, struct thread *td); static int kqueue_write(struct file *fp, struct uio *uio, struct ucred *cred, int flags, struct thread *td); -static int kqueue_ioctl(struct file *fp, u_long com, caddr_t data, +static int kqueue_ioctl(struct file *fp, u_long com, void *data, struct thread *td); static int kqueue_poll(struct file *fp, int events, struct ucred *cred, struct thread *td); @@ -793,7 +793,7 @@ kqueue_write(struct file *fp, struct uio *uio, struct ucred *cred, /*ARGSUSED*/ static int -kqueue_ioctl(struct file *fp, u_long com, caddr_t data, struct thread *td) +kqueue_ioctl(struct file *fp, u_long com, void *data, struct thread *td) { return (ENOTTY); } |