X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftlist%2Ftest%2Frun.c;h=f94438eaf69551bc117754143d554ee9246ca326;hb=add31d826b4e67c5f123332f0fecefd5ccc9c9c9;hp=027028e602401f899e0035f5f61281e4dda11748;hpb=6a906358d922800c7358c5c46c34bf4a5e6863ad;p=ccan 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(); }