Fix build by correcting a wrong cast.

This commit is contained in:
Maxime Henrion 2003-08-20 08:24:49 +00:00
parent 4541e3ecc6
commit 36ffc09c55

View File

@ -273,7 +273,7 @@ aac_disk_dump(void *arg, void *virtual, vm_offset_t physical, off_t offset, size
if (aac_sync_fib(sc, ContainerCommand, 0, fib, size)) { if (aac_sync_fib(sc, ContainerCommand, 0, fib, size)) {
printf("Error dumping block 0x%jx\n", printf("Error dumping block 0x%jx\n",
(uintptr_t)physical); (uintmax_t)physical);
return (EIO); return (EIO);
} }