summaryrefslogtreecommitdiffstats
path: root/sys/dev/pccbb
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2001-06-30 03:57:20 +0000
committerimp <imp@FreeBSD.org>2001-06-30 03:57:20 +0000
commit1f5ef0493527970795b3bdab22e28be87132d661 (patch)
treea7e3b6df3c96aaf342585fdb1aa66e7872cec1b5 /sys/dev/pccbb
parentcbf193046b86decfda28ab2a1cecd0a5d86279c6 (diff)
downloadFreeBSD-src-1f5ef0493527970795b3bdab22e28be87132d661.zip
FreeBSD-src-1f5ef0493527970795b3bdab22e28be87132d661.tar.gz
Fix warning message.
Suggested by: julian
Diffstat (limited to 'sys/dev/pccbb')
-rw-r--r--sys/dev/pccbb/pccbb.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/pccbb/pccbb.c b/sys/dev/pccbb/pccbb.c
index 33d7842..e1afa74 100644
--- a/sys/dev/pccbb/pccbb.c
+++ b/sys/dev/pccbb/pccbb.c
@@ -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);
}
}
OpenPOWER on IntegriCloud