diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2001-04-06 16:27:47 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2001-04-06 16:27:47 +0000 |
commit | 4de5170396cc9f30d77a2b1216d1a35e1c90cf8e (patch) | |
tree | 13819e303b69e08cb40e20aee9a9dd4ad64b4c7d /sys/dev/pci/if_en_pci.c | |
parent | 37216eb1389b8319aa7ffa5a04d57de1cf9dfb89 (diff) |
typo in error message
Diffstat (limited to 'sys/dev/pci/if_en_pci.c')
-rw-r--r-- | sys/dev/pci/if_en_pci.c | 4 |
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"); |