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));
                }
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to