diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-03-05 20:24:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-03-05 20:24:05 +0000 |
commit | 03367a2f3a1dc0afb2ccb2a8ac1636d4cae9b1a6 (patch) | |
tree | cf04ee7919b56c83d0317950eeada325ed3e5e0b /sys/dev | |
parent | bac011b9c1535da079f6cf1019861e027cad199a (diff) |
no \n in panic(); rimshot@pandora.be
Diffstat (limited to 'sys/dev')
-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++; |