From 859c9099b22076d3ab50eb865b0bdc3ab18c2c5e Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sat, 30 Jun 2001 03:57:20 +0000 Subject: [PATCH] Fix warning message. Suggested by: julian --- sys/dev/pccbb/pccbb.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sys/dev/pccbb/pccbb.c b/sys/dev/pccbb/pccbb.c index 33d7842dc69f..e1afa74ef6cc 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); } }