diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-09-21 17:55:45 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-09-21 17:55:45 +0000 |
commit | 296a980a673fb8ee2d9828dd1849f41a76ae8ffa (patch) | |
tree | 562f8089f0fb6f54fb967d433196ed322ceea17e /sys/dev/pci/if_de.c | |
parent | 03f3926613d3d324635bb86e844e68fc70426465 (diff) |
Correct some pryntf() usage: get the correct number of arguments in the
correct order.
Diffstat (limited to 'sys/dev/pci/if_de.c')
-rw-r--r-- | sys/dev/pci/if_de.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/pci/if_de.c b/sys/dev/pci/if_de.c index 058c0625317..1cfb25ffd1c 100644 --- a/sys/dev/pci/if_de.c +++ b/sys/dev/pci/if_de.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_de.c,v 1.50 2001/09/11 20:05:25 miod Exp $ */ +/* $OpenBSD: if_de.c,v 1.51 2001/09/21 17:55:43 miod Exp $ */ /* $NetBSD: if_de.c,v 1.45 1997/06/09 00:34:18 thorpej Exp $ */ /*- @@ -5545,8 +5545,7 @@ tulip_pci_attach( sc->tulip_ih = pci_intr_establish(pa->pa_pc, intrhandle, IPL_NET, intr_rtn, sc, self->dv_xname); if (sc->tulip_ih == NULL) { - printf(", couldn't establish interrupt", - sc->tulip_dev.dv_xname); + printf(", couldn't establish interrupt"); if (intrstr != NULL) printf(" at %s", intrstr); printf("\n"); |