diff options
Diffstat (limited to 'src/s_bsd_kqueue.c')
-rw-r--r-- | src/s_bsd_kqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/s_bsd_kqueue.c b/src/s_bsd_kqueue.c index aa8a345..5f8d89c 100644 --- a/src/s_bsd_kqueue.c +++ b/src/s_bsd_kqueue.c @@ -88,7 +88,7 @@ kq_update_events(int fd, int filter, int what) int i; for (i = 0; i < kqoff; ++i) - kevent(kqfd.fd, kq_fdlist[i], 1, NULL, 0, &zero_timespec); + kevent(kqfd.fd, &kq_fdlist[i], 1, NULL, 0, &zero_timespec); kqoff = 0; } } |