X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fio%2Ftest%2Frun-06-idle.c;fp=ccan%2Fio%2Ftest%2Frun-06-idle.c;h=b32cbfe225c1e2bd5949509cd9d33558f1ce1712;hb=0f16a4197c94bfa84dad56d0cb9a9c20438d0a45;hp=388805a882b4bb31bccfc44790d694a8f1f5a641;hpb=e2ce04eac30ec613c858bd4cd2ca12e1c464edb8;p=ccan diff --git a/ccan/io/test/run-06-idle.c b/ccan/io/test/run-06-idle.c index 388805a8..b32cbfe2 100644 --- a/ccan/io/test/run-06-idle.c +++ b/ccan/io/test/run-06-idle.c @@ -52,12 +52,14 @@ static void init_conn(int fd, struct data *d) ok1(d->state == 0); d->state++; - idler = io_new_conn(fd, io_idle(), finish_idle, d); + idler = io_new_conn(fd, io_idle()); + io_set_finish(idler, finish_idle, d); /* This will wake us up, as read will fail. */ fd2 = open("/dev/null", O_RDONLY); ok1(fd2 >= 0); - ok1(io_new_conn(fd2, io_read(idler, 1, never, NULL), finish_waker, d)); + io_set_finish(io_new_conn(fd2, io_read(idler, 1, never, NULL)), + finish_waker, d); } static int make_listen_fd(const char *port, struct addrinfo **info) @@ -100,7 +102,7 @@ int main(void) int fd, status; /* This is how many tests you plan to run */ - plan_tests(14); + plan_tests(13); d->state = 0; fd = make_listen_fd(PORT, &addrinfo); ok1(fd >= 0);