From d95eaaf3ed5c8dd4f24df8c50f9a38735ec3b660 Mon Sep 17 00:00:00 2001 From: Sam Leffler Date: Wed, 26 Jul 2006 04:09:04 +0000 Subject: [PATCH] add missing \n's Submitted by: avatar@ MFC after: 1 week --- sys/dev/ath/ath_rate/sample/sample.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/ath/ath_rate/sample/sample.h b/sys/dev/ath/ath_rate/sample/sample.h index 231b15f2dc6..c5a4a23c5c0 100644 --- a/sys/dev/ath/ath_rate/sample/sample.h +++ b/sys/dev/ath/ath_rate/sample/sample.h @@ -200,7 +200,7 @@ static unsigned calc_usecs_unicast_packet(struct ath_softc *sc, KASSERT(rt != NULL, ("no rate table, mode %u", sc->sc_curmode)); if (!rt->info[rix].rateKbps) { - printf("rix %d (%d) bad ratekbps %d mode %u", + printf("rix %d (%d) bad ratekbps %d mode %u\n", rix, rt->info[rix].dot11Rate, rt->info[rix].rateKbps, sc->sc_curmode); @@ -254,7 +254,7 @@ static unsigned calc_usecs_unicast_packet(struct ath_softc *sc, int ctsduration = 0; if (!rt->info[cix].rateKbps) { - printf("cix %d (%d) bad ratekbps %d mode %u", + printf("cix %d (%d) bad ratekbps %d mode %u\n", cix, rt->info[cix].dot11Rate, rt->info[cix].rateKbps, sc->sc_curmode);