diff options
author | imp <imp@FreeBSD.org> | 2002-08-12 22:34:12 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-08-12 22:34:12 +0000 |
commit | f6857426378cb50f80bd44d4d7c8e1b3801fe646 (patch) | |
tree | 7b902920ae0e7abbb13f03c493aea840da982141 /sys | |
parent | 191f2abda5b10cff66db2bd0ea0544d8a4f4a0b1 (diff) | |
download | FreeBSD-src-f6857426378cb50f80bd44d4d7c8e1b3801fe646.zip FreeBSD-src-f6857426378cb50f80bd44d4d7c8e1b3801fe646.tar.gz |
Don't redundantly include \n in panic messages
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pccard/pccard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pccard/pccard.c b/sys/dev/pccard/pccard.c index 4e73e98..6320155 100644 --- a/sys/dev/pccard/pccard.c +++ b/sys/dev/pccard/pccard.c @@ -1193,7 +1193,7 @@ pccard_setup_intr(device_t dev, device_t child, struct resource *irq, int err; if (func->intr_handler != NULL) - panic("Only one interrupt handler per function allowed\n"); + panic("Only one interrupt handler per function allowed"); err = bus_generic_setup_intr(dev, child, irq, flags, pccard_intr, func, cookiep); if (err != 0) |