diff options
author | bde <bde@FreeBSD.org> | 1998-08-24 02:28:16 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-08-24 02:28:16 +0000 |
commit | f45ec220062c45b6f53f7eddeb3892a2df54ca63 (patch) | |
tree | add7f3aff956758872236d008a575411ee01f80a /sys/dev/pdq | |
parent | d39f49e72d9eed2771f3bb23e90fdaa965286143 (diff) | |
download | FreeBSD-src-f45ec220062c45b6f53f7eddeb3892a2df54ca63.zip FreeBSD-src-f45ec220062c45b6f53f7eddeb3892a2df54ca63.tar.gz |
Fixed printf format errors. Only one left in LINT on i386's.
Diffstat (limited to 'sys/dev/pdq')
-rw-r--r-- | sys/dev/pdq/if_fea.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pdq/if_fea.c b/sys/dev/pdq/if_fea.c index b13b18f..4113b1a 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; } |