svn commit: r268989 - head/sys/dev/cxgbe

Navdeep Parhar np at FreeBSD.org
Tue Jul 22 19:48:21 UTC 2014


Author: np
Date: Tue Jul 22 19:48:21 2014
New Revision: 268989
URL: http://svnweb.freebsd.org/changeset/base/268989

Log:
  Add missing newline to an error message.
  
  MFC after:	3 days

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

Modified: head/sys/dev/cxgbe/t4_sge.c
==============================================================================
--- head/sys/dev/cxgbe/t4_sge.c	Tue Jul 22 19:37:38 2014	(r268988)
+++ head/sys/dev/cxgbe/t4_sge.c	Tue Jul 22 19:48:21 2014	(r268989)
@@ -2939,7 +2939,7 @@ alloc_eq(struct adapter *sc, struct port
 	}
 	if (rc != 0) {
 		device_printf(sc->dev,
-		    "failed to allocate egress queue(%d): %d",
+		    "failed to allocate egress queue(%d): %d\n",
 		    eq->flags & EQ_TYPEMASK, rc);
 	}
 


More information about the svn-src-head mailing list