svn commit: r266052 - stable/9/sys/netinet
Michael Tuexen
tuexen at FreeBSD.org
Wed May 14 17:07:15 UTC 2014
Author: tuexen
Date: Wed May 14 17:07:14 2014
New Revision: 266052
URL: http://svnweb.freebsd.org/changeset/base/266052
Log:
MFC r257359:
Terminate a debug output with a \n.
Modified:
stable/9/sys/netinet/sctp_timer.c
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/netinet/sctp_timer.c
==============================================================================
--- stable/9/sys/netinet/sctp_timer.c Wed May 14 17:04:02 2014 (r266051)
+++ stable/9/sys/netinet/sctp_timer.c Wed May 14 17:07:14 2014 (r266052)
@@ -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-stable-9
mailing list