diff options
author | 2003-03-05 20:24:04 +0000 | |
---|---|---|
committer | 2003-03-05 20:24:04 +0000 | |
commit | 3f5f5a3e7babb063f802b495c727b52393e36e5a (patch) | |
tree | e029f9823244342d3d37ef24ee740f845282d87c | |
parent | typos; (diff) | |
download | wireguard-openbsd-3f5f5a3e7babb063f802b495c727b52393e36e5a.tar.xz wireguard-openbsd-3f5f5a3e7babb063f802b495c727b52393e36e5a.zip |
no \n in panic(); rimshot@pandora.be
-rw-r--r-- | sys/dev/pci/if_ti.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_ti.c b/sys/dev/pci/if_ti.c index 455cecd76cd..967b81aa67c 100644 --- a/sys/dev/pci/if_ti.c +++ b/sys/dev/pci/if_ti.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ti.c,v 1.44 2003/02/26 19:07:32 nate Exp $ */ +/* $OpenBSD: if_ti.c,v 1.45 2003/03/05 20:24:04 deraadt Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -1879,7 +1879,7 @@ void ti_rxeof(sc) } if (m == NULL) - panic("%s: couldn't get mbuf\n", sc->sc_dv.dv_xname); + panic("%s: couldn't get mbuf", sc->sc_dv.dv_xname); m->m_pkthdr.len = m->m_len = cur_rx->ti_len; ifp->if_ipackets++; |