diff options
author | Stefan Fritsch <sf@cvs.openbsd.org> | 2013-10-02 21:06:18 +0000 |
---|---|---|
committer | Stefan Fritsch <sf@cvs.openbsd.org> | 2013-10-02 21:06:18 +0000 |
commit | 0727e266f49275d1c6fd044cd6efa888936b6d5a (patch) | |
tree | 7ad10203121b18bc84d2cc0bb29de48b5226d0cc /sys/arch/i386/pci | |
parent | a7bcdf13ad79e3ae2d738ada7e2473804cc1443d (diff) |
Format string fixes: Use %l* for paddr_t
Diffstat (limited to 'sys/arch/i386/pci')
-rw-r--r-- | sys/arch/i386/pci/pci_addr_fixup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/pci/pci_addr_fixup.c b/sys/arch/i386/pci/pci_addr_fixup.c index 10238e5a989..96dd3060f62 100644 --- a/sys/arch/i386/pci/pci_addr_fixup.c +++ b/sys/arch/i386/pci/pci_addr_fixup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_addr_fixup.c,v 1.23 2013/10/01 19:41:33 sf Exp $ */ +/* $OpenBSD: pci_addr_fixup.c,v 1.24 2013/10/02 21:06:17 sf Exp $ */ /* $NetBSD: pci_addr_fixup.c,v 1.7 2000/08/03 20:10:45 nathanw Exp $ */ /*- @@ -136,7 +136,7 @@ pci_addr_fixup(struct pcibios_softc *sc, pci_chipset_tag_t pc, int maxbus) start = PCIADDR_ISAMEM_RESERVE; sc->mem_alloc_start = (start + 0x100000 + 1) & ~(0x100000 - 1); sc->port_alloc_start = PCIADDR_ISAPORT_RESERVE; - PCIBIOS_PRINTV((" Physical memory end: 0x%08x\n PCI memory mapped I/O " + PCIBIOS_PRINTV((" Physical memory end: 0x%08lx\n PCI memory mapped I/O " "space start: 0x%08x\n", avail_end, sc->mem_alloc_start)); /* |