summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_en_pci.c
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2001-04-06 16:27:47 +0000
committerJason Wright <jason@cvs.openbsd.org>2001-04-06 16:27:47 +0000
commit4de5170396cc9f30d77a2b1216d1a35e1c90cf8e (patch)
tree13819e303b69e08cb40e20aee9a9dd4ad64b4c7d /sys/dev/pci/if_en_pci.c
parent37216eb1389b8319aa7ffa5a04d57de1cf9dfb89 (diff)
typo in error message
Diffstat (limited to 'sys/dev/pci/if_en_pci.c')
-rw-r--r--sys/dev/pci/if_en_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_en_pci.c b/sys/dev/pci/if_en_pci.c
index 6a7cc8c9e18..5a4ad306a17 100644
--- a/sys/dev/pci/if_en_pci.c
+++ b/sys/dev/pci/if_en_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_en_pci.c,v 1.6 1998/01/07 11:03:27 deraadt Exp $ */
+/* $OpenBSD: if_en_pci.c,v 1.7 2001/04/06 16:27:45 jason Exp $ */
/*
*
@@ -221,7 +221,7 @@ void *aux;
scp->sc_ih = pci_intr_establish(scp->en_pc, ih, IPL_NET, en_intr, sc,
sc->sc_dev.dv_xname);
if (scp->sc_ih == NULL) {
- printf(": couldn't establish interrupt\n");
+ printf(": couldn't establish interrupt");
if (intrstr != NULL)
printf(" at %s", intrstr);
printf("\n");