diff options
| -rw-r--r-- | sys/pccard/pccard_nbk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pccard/pccard_nbk.c b/sys/pccard/pccard_nbk.c index ef6cac9fdacb..3fd7114d2813 100644 --- a/sys/pccard/pccard_nbk.c +++ b/sys/pccard/pccard_nbk.c @@ -183,7 +183,7 @@ pccnbk_alloc_resources(device_t dev) devi->iorv = BUS_ALLOC_RESOURCE(device_get_parent(dev), dev, SYS_RES_IOPORT, &rid, start, end, count, RF_ACTIVE); if (!devi->iorv) { - printf("Cannot allocate ports 0x%x-0x%x\n", start, end); + printf("Cannot allocate ports 0x%lx-0x%lx\n", start, end); return (ENOMEM); } rid = 0; |
