diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-12-02 18:11:52 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-12-02 18:11:52 +0000 |
commit | e43efb38cdbab2f2d8baa192038d0e18c58b2596 (patch) | |
tree | 4be51a71ef18c964d84a85138561b9d0a334b79d /src | |
parent | e136c4dd67be9a1c89c635017fdc6e5eee33e331 (diff) |
- src/s_bsd_kqueue.c: fixed compile warning
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2612 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src')
-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; } } |