From bb5f3f2e466c99f6e8db4e282e23c5748e050a28 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Sun, 5 Jun 2016 06:47:24 +0200 Subject: [PATCH] Fix previous fix (using Travis as a time-sharing system again) Signed-off-by: Martin Sustrik --- kqueue.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kqueue.inc b/kqueue.inc index e3cbbd65..b9f0c347 100644 --- a/kqueue.inc +++ b/kqueue.inc @@ -171,7 +171,7 @@ void dill_pollset_clean(int fd) { fdi->currevs = 0; /* If needed, remove the fd from the changelist. */ if(fdi->next) { - uint32_t *pidx = &dill_changelist->next; + uint32_t *pidx = &dill_changelist; while(1) { dill_assert(*pidx != 0 && *pidx != DILL_ENDLIST); if(*pidx - 1 == fd) break;