From 48df378ef02b15bdfd95a140fae980fd92745a0c Mon Sep 17 00:00:00 2001 From: tuexen Date: Fri, 12 Nov 2010 20:46:33 +0000 Subject: [PATCH] Don't print an empty line when printing mapping arrays. MFC after: 3 days. --- sys/netinet/sctputil.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/netinet/sctputil.c b/sys/netinet/sctputil.c index 76c58a54aa7d..707d05cd37bd 100644 --- a/sys/netinet/sctputil.c +++ b/sys/netinet/sctputil.c @@ -1212,8 +1212,6 @@ sctp_print_mapping_array(struct sctp_association *asoc) printf("Renegable mapping array (last %d entries are zero):\n", asoc->mapping_array_size - limit); for (i = 0; i < limit; i++) { printf("%2.2x%c", asoc->mapping_array[i], ((i + 1) % 16) ? ' ' : '\n'); - if (((i + 1) % 16) == 0) - printf("\n"); } if (limit % 16) printf("\n");