aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNavdeep Parhar <np@FreeBSD.org>2013-04-11 21:17:49 +0000
committerNavdeep Parhar <np@FreeBSD.org>2013-04-11 21:17:49 +0000
commite7fdf38bbbf109bbc72897547f3bf41bc53b0436 (patch)
tree99780c15666467e74863d6a8ce6437f4f9ca44f0
parent53e8e49dcff7e0613f0260b148188e989717651b (diff)
downloadsrc-e7fdf38bbbf109bbc72897547f3bf41bc53b0436.tar.gz
src-e7fdf38bbbf109bbc72897547f3bf41bc53b0436.zip
Get rid of a couple of stray \n's.
MFC after: 3 days.
Notes
Notes: svn path=/head/; revision=249383
-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 74bfa51de53f..5f75a8826d2f 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));
}