diff options
Diffstat (limited to 'sys/kern/sys_pipe.c')
-rw-r--r-- | sys/kern/sys_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c index 40d47e4..d1a2741 100644 --- a/sys/kern/sys_pipe.c +++ b/sys/kern/sys_pipe.c @@ -1187,7 +1187,7 @@ filt_pipedetach(struct knote *kn) { struct pipe *rpipe = (struct pipe *)kn->kn_fp->f_data; - SLIST_REMOVE(&rpipe->pipe_sel.si_note, kn, knote, kn_selnext); + SLIST_REMOVE(&rpipe->pipe_sel.si_note, kn, struct knote, kn_selnext); } /*ARGSUSED*/ |