summaryrefslogtreecommitdiffstats
path: root/src/poll.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/poll.c')
-rw-r--r--src/poll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/poll.c b/src/poll.c
index 123db6f..6507aad 100644
--- a/src/poll.c
+++ b/src/poll.c
@@ -54,7 +54,7 @@
/** Returns the time to the next task or -1 */
static inline int task_timeout(void) {
fastd_timeout_t timeout = fastd_task_queue_timeout();
- if (timeout == fastd_timeout_inv)
+ if (timeout == FASTD_TIMEOUT_INV)
return -1;
int diff_msec = timeout - ctx.now;