X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fio%2Ftest%2Frun-10-many.c;fp=ccan%2Fio%2Ftest%2Frun-10-many.c;h=b20b2285b9e9621673ba7f3318834d9ea191a8c9;hb=0998955055e45ef980a2dfdbd302142269abdd26;hp=63c539634f92ad98e592d6a17b7063ffb162ad13;hpb=7a8a585c32d1010426f587a6933f05de7a06dfd0;p=ccan diff --git a/ccan/io/test/run-10-many.c b/ccan/io/test/run-10-many.c index 63c53963..b20b2285 100644 --- a/ccan/io/test/run-10-many.c +++ b/ccan/io/test/run-10-many.c @@ -22,16 +22,16 @@ static struct io_plan *do_read(struct io_conn *conn, struct buffer *buf) { assert(conn == buf->reader); - return io_read(&buf->buf, sizeof(buf->buf), - io_next(conn, poke_writer, buf)); + return io_read(conn, &buf->buf, sizeof(buf->buf), + poke_writer, buf); } static struct io_plan *do_write(struct io_conn *conn, struct buffer *buf) { assert(conn == buf->writer); - return io_write(&buf->buf, sizeof(buf->buf), - io_next(conn, poke_reader, buf)); + return io_write(conn, &buf->buf, sizeof(buf->buf), + poke_reader, buf); } static struct io_plan *poke_writer(struct io_conn *conn, struct buffer *buf)