diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2010-08-07 03:50:03 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2010-08-07 03:50:03 +0000 |
commit | eb95cc9da073c2c7f556ff2c8c2a63c319881bfb (patch) | |
tree | d3984d88de35cd21a0754c75a71b124b3e0c79f2 /sys/dev/ic/acx.c | |
parent | 327b342b96e585a8d91a4811578b95328b8aead2 (diff) |
No "\n" needed at the end of panic() strings.
Bogus chunks pointed out by matthew@ and miod@. No cookies for
marco@ and jasper@.
ok deraadt@ miod@ matthew@ jasper@ macro@
Diffstat (limited to 'sys/dev/ic/acx.c')
-rw-r--r-- | sys/dev/ic/acx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/acx.c b/sys/dev/ic/acx.c index 2f9fe36b098..cba71b01ec1 100644 --- a/sys/dev/ic/acx.c +++ b/sys/dev/ic/acx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acx.c,v 1.95 2009/09/13 14:42:52 krw Exp $ */ +/* $OpenBSD: acx.c,v 1.96 2010/08/07 03:50:01 krw Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -2197,7 +2197,7 @@ acx_encap(struct acx_softc *sc, struct acx_txbuf *txbuf, struct mbuf *m, int error; if (txbuf->tb_mbuf != NULL) - panic("free TX buf has mbuf installed\n"); + panic("free TX buf has mbuf installed"); error = 0; |