s/SLIST/STAILQ/

This commit is contained in:
Yoshihiro Takahashi 2005-03-20 05:22:57 +00:00
parent 6638c61aa6
commit f227591555

View File

@ -431,7 +431,7 @@ print_all_resources(device_t dev)
struct resource_list *rl = &cbdev->cbdev_resources;
int retval = 0;
if (SLIST_FIRST(rl))
if (STAILQ_FIRST(rl))
retval += printf(" at");
retval += resource_list_print_type(rl, "port", SYS_RES_IOPORT, "%#lx");