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/isa/ess_isapnp.c | |
parent | 03f3926613d3d324635bb86e844e68fc70426465 (diff) |
Correct some pryntf() usage: get the correct number of arguments in the
correct order.
Diffstat (limited to 'sys/dev/isa/ess_isapnp.c')
-rw-r--r-- | sys/dev/isa/ess_isapnp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/ess_isapnp.c b/sys/dev/isa/ess_isapnp.c index 92b792500b1..56784874d01 100644 --- a/sys/dev/isa/ess_isapnp.c +++ b/sys/dev/isa/ess_isapnp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ess_isapnp.c,v 1.3 2001/04/19 23:33:20 deraadt Exp $ */ +/* $OpenBSD: ess_isapnp.c,v 1.4 2001/09/21 17:55:43 miod Exp $ */ /* $NetBSD: ess_isa.c,v 1.4 1999/03/18 20:57:11 mycroft Exp $ */ /*- @@ -94,7 +94,7 @@ void ess_isapnp_attach(parent, self, aux) sc->sc_isa = parent->dv_parent; if (!essmatch(sc)) { - printf(": essmatch failed\n", sc->sc_dev.dv_xname); + printf(": essmatch failed\n"); return; } |