mirror of
https://github.com/transmission/transmission
synced 2025-02-20 21:26:53 +00:00
(trunk libevent) fix kqueue build failure
This commit is contained in:
parent
c8fc84b971
commit
72603cc5a0
1 changed files with 2 additions and 2 deletions
4
third-party/libevent/kqueue.c
vendored
4
third-party/libevent/kqueue.c
vendored
|
@ -364,8 +364,8 @@ kq_dispatch(struct event_base *base, void *arg, struct timeval *tv)
|
|||
ev = (struct event *)events[i].udata;
|
||||
assert(ev != NULL);
|
||||
assert(ev->ev_pri == 0);
|
||||
assert(ev->base != NULL);
|
||||
assert(ev->base == base);
|
||||
assert(ev->ev_base != NULL);
|
||||
assert(ev->ev_base == base);
|
||||
|
||||
if (!(ev->ev_events & EV_PERSIST))
|
||||
ev->ev_flags &= ~EVLIST_X_KQINKERNEL;
|
||||
|
|
Loading…
Reference in a new issue