summaryrefslogtreecommitdiff
path: root/sys/dev/pci/ubsec.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/ubsec.c
parent37216eb1389b8319aa7ffa5a04d57de1cf9dfb89 (diff)
typo in error message
Diffstat (limited to 'sys/dev/pci/ubsec.c')
-rw-r--r--sys/dev/pci/ubsec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/ubsec.c b/sys/dev/pci/ubsec.c
index 8a1342008b8..a93de2d5a65 100644
--- a/sys/dev/pci/ubsec.c
+++ b/sys/dev/pci/ubsec.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ubsec.c,v 1.42 2001/03/28 20:03:00 angelos Exp $ */
+/* $OpenBSD: ubsec.c,v 1.43 2001/04/06 16:27:45 jason Exp $ */
/*
* Copyright (c) 2000 Jason L. Wright (jason@thought.net)
@@ -173,7 +173,7 @@ ubsec_attach(parent, self, aux)
sc->sc_ih = pci_intr_establish(pc, ih, IPL_NET, ubsec_intr, sc,
self->dv_xname);
if (sc->sc_ih == NULL) {
- printf(": couldn't establish interrupt\n");
+ printf(": couldn't establish interrupt");
if (intrstr != NULL)
printf(" at %s", intrstr);
printf("\n");