diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2002-10-09 23:43:12 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2002-10-09 23:43:12 +0000 |
commit | 7fe821d45d2fd0c6ca0edd62f5b4efcf9e53e4b0 (patch) | |
tree | 31e7dad9c1c55e779ae321a8c95cfe5ec3d6d03f /sys/dev/ic/dp8390.c | |
parent | 115a56b437e49fe2ea3d826359ab58dad9f5a11d (diff) |
Remove trailing '\n's from panic messages.
Started by a commit to siop from provos@netbsd.org.
ok miod@ millert@
Diffstat (limited to 'sys/dev/ic/dp8390.c')
-rw-r--r-- | sys/dev/ic/dp8390.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/dp8390.c b/sys/dev/ic/dp8390.c index 6a1ca66fa5b..785751813b7 100644 --- a/sys/dev/ic/dp8390.c +++ b/sys/dev/ic/dp8390.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dp8390.c,v 1.23 2002/03/14 01:26:54 millert Exp $ */ +/* $OpenBSD: dp8390.c,v 1.24 2002/10/09 23:43:11 krw Exp $ */ /* $NetBSD: dp8390.c,v 1.13 1998/07/05 06:49:11 jonathan Exp $ */ /* @@ -391,7 +391,7 @@ dp8390_xmit(sc) sc->txb_next_tx, sc->txb_inuse, sc->txb_cnt, sc->txb_new); if (sc->txb_inuse == 0) - panic("dp8390_xmit: no packets to xmit\n"); + panic("dp8390_xmit: no packets to xmit"); #endif len = sc->txb_len[sc->txb_next_tx]; |