diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2005-03-18 11:57:44 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2005-03-18 11:57:44 +0000 |
commit | be1bf4d2b832e26174fec458a5e9bcaca88cc947 (patch) | |
tree | 9892d4427fa1159c9d56169d633ca3283dd4c1e1 /sys/amd64 | |
parent | f9cd63d436c61624296f6f64e52366fa34aab840 (diff) | |
download | src-be1bf4d2b832e26174fec458a5e9bcaca88cc947.tar.gz src-be1bf4d2b832e26174fec458a5e9bcaca88cc947.zip |
s/SLIST/STAILQ/
/imp/a\
pointy hat
.
Notes
Notes:
svn path=/head/; revision=143801
Diffstat (limited to 'sys/amd64')
-rw-r--r-- | sys/amd64/amd64/nexus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/amd64/nexus.c b/sys/amd64/amd64/nexus.c index 1b1b6beec836..1de744de3e63 100644 --- a/sys/amd64/amd64/nexus.c +++ b/sys/amd64/amd64/nexus.c @@ -242,7 +242,7 @@ nexus_print_all_resources(device_t dev) struct resource_list *rl = &ndev->nx_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"); |