summaryrefslogtreecommitdiff
path: root/sys/netinet6/ipv6_icmp.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-01-11 05:12:41 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-01-11 05:12:41 +0000
commitb3067fd524234e263e58b215d0fb24d414bf1c34 (patch)
tree5c1576265dded5700ab387af81051fabd39f3396 /sys/netinet6/ipv6_icmp.c
parent9ee95b4b405b050512cf782b508d774f4601a6b5 (diff)
panic prints a newline for you, don't do it in the panic string
Diffstat (limited to 'sys/netinet6/ipv6_icmp.c')
-rw-r--r--sys/netinet6/ipv6_icmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet6/ipv6_icmp.c b/sys/netinet6/ipv6_icmp.c
index 843fc2ddcd7..b718c46e752 100644
--- a/sys/netinet6/ipv6_icmp.c
+++ b/sys/netinet6/ipv6_icmp.c
@@ -958,7 +958,7 @@ int ipv6_icmp_send(struct socket *so, int req, struct mbuf *m,
M_PREPEND(m,sizeof(struct ipv6),M_WAIT);
if (m == NULL)
- panic("M_PREPEND died in ipv6_icmp_usrreq().\n");
+ panic("M_PREPEND died in ipv6_icmp_usrreq().");
DPRINTF(EVENT,("Before m_pullup() for %d bytes.\n",\
sizeof(struct ipv6) + ICMPV6_MINLEN));