X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftlist%2Ftest%2Frun.c;h=f94438eaf69551bc117754143d554ee9246ca326;hp=027028e602401f899e0035f5f61281e4dda11748;hb=a6b5111fe6948e51114c33aa34785c9fd0d403e6;hpb=c1e57dbfbd00dee590ab0403763796bff0e2eb2e diff --git a/ccan/tlist/test/run.c b/ccan/tlist/test/run.c index 027028e6..f94438ea 100644 --- a/ccan/tlist/test/run.c +++ b/ccan/tlist/test/run.c @@ -73,10 +73,10 @@ int main(int argc, char *argv[]) ok1(tlist_check(&parent.children, NULL)); /* Test tlist_top */ - ok1(tlist_top(&parent.children, struct child, list) == &c1); + ok1(tlist_top(&parent.children, list) == &c1); /* Test list_tail */ - ok1(tlist_tail(&parent.children, struct child, list) == &c3); + ok1(tlist_tail(&parent.children, list) == &c3); /* Test tlist_for_each. */ i = 0; @@ -141,7 +141,7 @@ int main(int argc, char *argv[]) ok1(tlist_empty(&parent.children)); /* Test list_top/list_tail on empty list. */ - ok1(tlist_top(&parent.children, struct child, list) == NULL); - ok1(tlist_tail(&parent.children, struct child, list) == NULL); + ok1(tlist_top(&parent.children, list) == (struct child *)NULL); + ok1(tlist_tail(&parent.children, list) == (struct child *)NULL); return exit_status(); }