Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Apr 2013 21:17:49 +0000 (UTC)
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r249383 - head/sys/dev/cxgbe
Message-ID:  <201304112117.r3BLHnbp018317@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: np
Date: Thu Apr 11 21:17:49 2013
New Revision: 249383
URL: http://svnweb.freebsd.org/changeset/base/249383

Log:
  Get rid of a couple of stray \n's.
  
  MFC after:	3 days.

Modified:
  head/sys/dev/cxgbe/t4_main.c

Modified: head/sys/dev/cxgbe/t4_main.c
==============================================================================
--- head/sys/dev/cxgbe/t4_main.c	Thu Apr 11 21:15:35 2013	(r249382)
+++ head/sys/dev/cxgbe/t4_main.c	Thu Apr 11 21:17:49 2013	(r249383)
@@ -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));
 		}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201304112117.r3BLHnbp018317>