diff --git a/bar.c b/bar.c index a1a067c..cd8106e 100644 --- a/bar.c +++ b/bar.c @@ -592,8 +592,7 @@ run(struct bar_run_context *run_ctx) {.fd = fd, .events = POLLIN} }; - int ret = poll(fds, sizeof(fds) / sizeof(fds[0]), -1); - assert(ret == 1); + poll(fds, sizeof(fds) / sizeof(fds[0]), -1); if (fds[0].revents && POLLIN) break;