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/ahc_pci.c | |
parent | 03f3926613d3d324635bb86e844e68fc70426465 (diff) |
Correct some pryntf() usage: get the correct number of arguments in the
correct order.
Diffstat (limited to 'sys/dev/pci/ahc_pci.c')
-rw-r--r-- | sys/dev/pci/ahc_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/ahc_pci.c b/sys/dev/pci/ahc_pci.c index a862b131e7b..0267a9876bd 100644 --- a/sys/dev/pci/ahc_pci.c +++ b/sys/dev/pci/ahc_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahc_pci.c,v 1.25 2001/08/25 10:13:29 art Exp $ */ +/* $OpenBSD: ahc_pci.c,v 1.26 2001/09/21 17:55:43 miod Exp $ */ /* $NetBSD: ahc_pci.c,v 1.9 1996/10/21 22:56:24 thorpej Exp $ */ /* @@ -470,7 +470,7 @@ void *aux; } if (pci_intr_map(pa, &ih)) { - printf(": couldn't map interrupt\n", ahc->sc_dev.dv_xname); + printf(": couldn't map interrupt\n"); ahc_free(ahc); return; } |