summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornp <np@FreeBSD.org>2013-04-11 21:17:49 +0000
committernp <np@FreeBSD.org>2013-04-11 21:17:49 +0000
commitfb2d6a2d063a7747ddf625ecb300fb5f360b90c8 (patch)
tree99780c15666467e74863d6a8ce6437f4f9ca44f0
parentebbc873044d70fc8b8cbbd1b281559c33d3bcf43 (diff)
downloadFreeBSD-src-fb2d6a2d063a7747ddf625ecb300fb5f360b90c8.zip
FreeBSD-src-fb2d6a2d063a7747ddf625ecb300fb5f360b90c8.tar.gz
Get rid of a couple of stray \n's.
MFC after: 3 days.
-rw-r--r--sys/dev/cxgbe/t4_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/cxgbe/t4_main.c b/sys/dev/cxgbe/t4_main.c
index 74bfa51..5f75a88 100644
--- a/sys/dev/cxgbe/t4_main.c
+++ b/sys/dev/cxgbe/t4_main.c
@@ -5760,11 +5760,11 @@ sysctl_wrwc_stats(SYSCTL_HANDLER_ARGS)
v = t4_read_reg(sc, A_SGE_STAT_CFG);
if (G_STATSOURCE_T5(v) == 7) {
if (G_STATMODE(v) == 0) {
- sbuf_printf(sb, "\ntotal %d, incomplete %d",
+ sbuf_printf(sb, "total %d, incomplete %d",
t4_read_reg(sc, A_SGE_STAT_TOTAL),
t4_read_reg(sc, A_SGE_STAT_MATCH));
} else if (G_STATMODE(v) == 1) {
- sbuf_printf(sb, "\ntotal %d, data overflow %d",
+ sbuf_printf(sb, "total %d, data overflow %d",
t4_read_reg(sc, A_SGE_STAT_TOTAL),
t4_read_reg(sc, A_SGE_STAT_MATCH));
}
OpenPOWER on IntegriCloud