svn commit: r257359 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Tue Oct 29 20:04:51 UTC 2013


Author: tuexen
Date: Tue Oct 29 20:04:50 2013
New Revision: 257359
URL: http://svnweb.freebsd.org/changeset/base/257359

Log:
  Terminate a debug output with a \n.

Modified:
  head/sys/netinet/sctp_timer.c

Modified: head/sys/netinet/sctp_timer.c
==============================================================================
--- head/sys/netinet/sctp_timer.c	Tue Oct 29 19:50:40 2013	(r257358)
+++ head/sys/netinet/sctp_timer.c	Tue Oct 29 20:04:50 2013	(r257359)
@@ -552,7 +552,7 @@ start_again:
 	TAILQ_FOREACH_SAFE(chk, &stcb->asoc.sent_queue, sctp_next, nchk) {
 		if (SCTP_TSN_GE(stcb->asoc.last_acked_seq, chk->rec.data.TSN_seq)) {
 			/* Strange case our list got out of order? */
-			SCTP_PRINTF("Our list is out of order? last_acked:%x chk:%x",
+			SCTP_PRINTF("Our list is out of order? last_acked:%x chk:%x\n",
 			    (unsigned int)stcb->asoc.last_acked_seq, (unsigned int)chk->rec.data.TSN_seq);
 			recovery_cnt++;
 #ifdef INVARIANTS


More information about the svn-src-head mailing list