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/netipx/ipx_ip.c | |
parent | 9ee95b4b405b050512cf782b508d774f4601a6b5 (diff) |
panic prints a newline for you, don't do it in the panic string
Diffstat (limited to 'sys/netipx/ipx_ip.c')
-rw-r--r-- | sys/netipx/ipx_ip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netipx/ipx_ip.c b/sys/netipx/ipx_ip.c index a9cfa226b9f..bbe46003209 100644 --- a/sys/netipx/ipx_ip.c +++ b/sys/netipx/ipx_ip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipx_ip.c,v 1.3 1996/10/26 09:34:51 mickey Exp $ */ +/* $OpenBSD: ipx_ip.c,v 1.4 1999/01/11 05:12:33 millert Exp $ */ /*- * @@ -310,7 +310,7 @@ void ipxipstart(ifp) struct ifnet *ifp; { - panic("ipxip_start called\n"); + panic("ipxip_start called"); } struct ifreq ifr_ipxip = {"ipx0"}; |