diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2005-12-15 23:17:25 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2005-12-15 23:17:25 +0000 |
commit | 1e44c715721583bd1abcee4cee9a0b82fb7b38ba (patch) | |
tree | bf06459838ef6886680dc1eb5bd8459dc18d3b01 /sys/dev/pci/if_epic_pci.c | |
parent | dfda486178c65b634df8f910407037d8eb8df1a4 (diff) |
Fix error printf()s.
ok brad@
Diffstat (limited to 'sys/dev/pci/if_epic_pci.c')
-rw-r--r-- | sys/dev/pci/if_epic_pci.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/pci/if_epic_pci.c b/sys/dev/pci/if_epic_pci.c index 9c4ce9082fd..33bea022c41 100644 --- a/sys/dev/pci/if_epic_pci.c +++ b/sys/dev/pci/if_epic_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_epic_pci.c,v 1.3 2005/07/02 21:51:05 brad Exp $ */ +/* $OpenBSD: if_epic_pci.c,v 1.4 2005/12/15 23:17:23 krw Exp $ */ /* $NetBSD: if_epic_pci.c,v 1.28 2005/02/27 00:27:32 perry Exp $ */ /*- @@ -223,8 +223,7 @@ epic_pci_attach(struct device *parent, struct device *self, void *aux) psc->sc_ih = pci_intr_establish(pc, ih, IPL_NET, epic_intr, sc, self->dv_xname); if (psc->sc_ih == NULL) { - printf("%s: unable to establish interrupt", - sc->sc_dev.dv_xname); + printf(": unable to establish interrupt"); if (intrstr != NULL) printf(" at %s", intrstr); printf("\n"); |