Fix warning message.

Suggested by: julian
This commit is contained in:
Warner Losh 2001-06-30 03:57:20 +00:00
parent aa3cefd06c
commit 859c9099b2

View File

@ -729,9 +729,10 @@ pccbb_removal (struct pccbb_softc *sc)
CARD_DETACH_CARD(sc->sc_cbdev, DETACH_FORCE);
while (NULL != (rle = SLIST_FIRST(&sc->rl))) {
device_printf(sc->sc_dev, "WARNING: Resource left allocated! "
"This is a bug... (rid=%x, type=%d, addr=%x)\n",
rle->rid, rle->type, rle->start);
device_printf(sc->sc_dev, "Danger Will Robinson: Resource "
"left allocated! This is a bug... "
"(rid=%x, type=%d, addr=%x)\n", rle->rid, rle->type,
rle->start);
SLIST_REMOVE_HEAD(&sc->rl, entries);
}
}