From: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> Date: Mon, 1 May 2017 14:24:34 +0200 A bit of data was put into a sequence by two separate function calls. Print the same data by a single function call instead. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> --- net/sctp/proc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/net/sctp/proc.c b/net/sctp/proc.c index 1cf4b6385418..458087681490 100644 --- a/net/sctp/proc.c +++ b/net/sctp/proc.c @@ -475,9 +475,7 @@ static int sctp_remaddr_seq_show(struct seq_file *seq, void *v) * The current state of this destination. I.e. * SCTP_ACTIVE, SCTP_INACTIVE, ... */ - seq_printf(seq, "%d", tsp->state); - - seq_printf(seq, "\n"); + seq_printf(seq, "%d\n", tsp->state); } sctp_transport_put(transport); -- 2.12.2 -- To unsubscribe from this list: send the line "unsubscribe linux-sctp" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html