From d2749f5cccceed94d9ccd8a2657fa9a3a08774f9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 8 Sep 2017 09:18:47 +0530 Subject: [PATCH] Sigh --- kitty/child-monitor.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kitty/child-monitor.c b/kitty/child-monitor.c index f9586ea58..39e778ea8 100644 --- a/kitty/child-monitor.c +++ b/kitty/child-monitor.c @@ -449,7 +449,6 @@ main_loop(ChildMonitor *self) { // }}} - // I/O thread functions {{{ static inline void @@ -670,7 +669,7 @@ io_loop(void *data) { if (false) { for (i = 0; i < self->count + EXTRA_FDS; i++) { #define P(w) if (fds[i].revents & w) printf("i:%lu %s\n", i, #w); - P(POLLIN); P(POLLPRI); P(POLLOUT); P(POLLRDHUP); P(POLLERR); P(POLLHUP); P(POLLNVAL); + P(POLLIN); P(POLLPRI); P(POLLOUT); P(POLLERR); P(POLLHUP); P(POLLNVAL); #undef P }