summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2006-09-29 05:34:26 +0000
committerBrad Smith <brad@cvs.openbsd.org>2006-09-29 05:34:26 +0000
commit2d2afb1a863d1f30632147c3aeef6583829a304b (patch)
tree2e909d87bb97b715ebf2c861ae1641d4059e6204 /sys
parent18df988cb34cceec623f3c01e108da8460ab0cda (diff)
add a missing format string to the beacon miss debug message.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/if_iwi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_iwi.c b/sys/dev/pci/if_iwi.c
index ff20d52d5d5..a406bf9c431 100644
--- a/sys/dev/pci/if_iwi.c
+++ b/sys/dev/pci/if_iwi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_iwi.c,v 1.74 2006/09/18 16:20:20 damien Exp $ */
+/* $OpenBSD: if_iwi.c,v 1.75 2006/09/29 05:34:25 brad Exp $ */
/*-
* Copyright (c) 2004-2006
@@ -1106,7 +1106,7 @@ iwi_notification_intr(struct iwi_softc *sc, struct iwi_rx_data *data,
if (letoh32(beacon->status) == IWI_BEACON_MISSED) {
/* XXX should roam when too many beacons missed */
- DPRINTFN(2, ("%u beacon(s) missed\n",
+ DPRINTFN(2, ("%s: %u beacon(s) missed\n",
sc->sc_dev.dv_xname, letoh32(beacon->count)));
}
break;