diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-01-11 05:12:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-01-11 05:12:41 +0000 |
commit | b3067fd524234e263e58b215d0fb24d414bf1c34 (patch) | |
tree | 5c1576265dded5700ab387af81051fabd39f3396 /sys/netinet6/ipv6_icmp.c | |
parent | 9ee95b4b405b050512cf782b508d774f4601a6b5 (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.c | 2 |
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)); |