aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Silbersack <silby@FreeBSD.org>2001-11-02 21:11:36 +0000
committerMike Silbersack <silby@FreeBSD.org>2001-11-02 21:11:36 +0000
commit5e0deac346b1669c25488ce2179d532730c4c776 (patch)
tree465eb53932889129fb3d3c99f1809868f1d15120
parentff8c7f95b2d34e13e9ab46a3c1d600f4484cdbb8 (diff)
downloadsrc-5e0deac346b1669c25488ce2179d532730c4c776.tar.gz
src-5e0deac346b1669c25488ce2179d532730c4c776.zip
Remove an extra " that crept into a string.
Notes
Notes: svn path=/head/; revision=85901
-rw-r--r--sys/pccard/pccard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pccard/pccard.c b/sys/pccard/pccard.c
index b730ee2fcd3d..9a369ba481e9 100644
--- a/sys/pccard/pccard.c
+++ b/sys/pccard/pccard.c
@@ -244,7 +244,7 @@ allocate_driver(struct slot *slt, struct dev_desc *desc)
child = device_add_child(pccarddev, devi->name, desc->unit);
if (child == NULL) {
device_printf(pccardd,
- "device_add_child shouldn't have failed, but did\n"");
+ "device_add_child shouldn't have failed, but did\n");
return (EIO);
}
device_set_flags(child, desc->flags);