Terminate a debug output with a \n.

This commit is contained in:
Michael Tuexen 2013-10-29 20:04:50 +00:00
parent ded7d20fc5
commit 6ed728108a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=257359

View File

@ -552,7 +552,7 @@ sctp_mark_all_for_resend(struct sctp_tcb *stcb,
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