Skip to content

Commit

Permalink
net: sctp: minor: sctp_seq_dump_local_addrs add missing newline
Browse files Browse the repository at this point in the history
A trailing newline has been forgotten to add into the WARN().

Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Acked-by: Vlad Yasevich <vyasevich@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Daniel Borkmann authored and David S. Miller committed Jun 25, 2013
1 parent 52db882 commit b527fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/sctp/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ static void sctp_seq_dump_local_addrs(struct seq_file *seq, struct sctp_ep_commo

peer = asoc->peer.primary_path;
if (unlikely(peer == NULL)) {
WARN(1, "Association %p with NULL primary path!", asoc);
WARN(1, "Association %p with NULL primary path!\n", asoc);
return;
}

Expand Down

0 comments on commit b527fe6

Please sign in to comment.