From 00671271c38b8c7744fb476e1cc1cdc8373418c6 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Mon, 24 Aug 1998 02:28:16 +0000 Subject: Fixed printf format errors. Only one left in LINT on i386's. --- sys/dev/pdq/if_fea.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/dev/pdq') diff --git a/sys/dev/pdq/if_fea.c b/sys/dev/pdq/if_fea.c index b13b18fb762b..4113b1ac7ca0 100644 --- a/sys/dev/pdq/if_fea.c +++ b/sys/dev/pdq/if_fea.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_fea.c,v 1.8 1998/01/08 23:40:33 eivind Exp $ + * $Id: if_fea.c,v 1.9 1998/02/20 13:11:46 bde Exp $ */ /* @@ -228,19 +228,19 @@ pdq_eisa_attach( sc->sc_iobase = (pdq_bus_ioport_t) iospace->addr; sc->sc_membase = (pdq_bus_memaddr_t) pmap_mapdev(mspace->addr, mspace->size); if (sc->sc_membase == NULL) { - printf("fea%d: failed to map memory 0x%x-0x%x!\n", + printf("fea%d: failed to map memory 0x%lx-0x%lx!\n", sc->sc_if.if_unit, mspace->addr, mspace->addr + mspace->size - 1); return -1; } eisa_reg_start(ed); if (eisa_reg_iospace(ed, iospace)) { - printf("fea%d: failed to register iospace 0x%x-0x%x!\n", + printf("fea%d: failed to register iospace 0x%lx-0x%lx!\n", sc->sc_if.if_unit, iospace->addr, iospace->addr + iospace->size - 1); return -1; } if (eisa_reg_mspace(ed, mspace)) { - printf("fea%d: failed to register memory 0x%x-0x%x!\n", + printf("fea%d: failed to register memory 0x%lx-0x%lx!\n", sc->sc_if.if_unit, mspace->addr, mspace->addr + mspace->size - 1); return -1; } -- cgit v1.3