mirror of
https://github.com/opnsense/src.git
synced 2026-06-12 18:20:49 -04:00
Unbreak the build on 64-bit architectures.
This commit is contained in:
parent
453ffeef5e
commit
02dcaf2fd1
1 changed files with 2 additions and 1 deletions
|
|
@ -130,7 +130,8 @@ vm_pageq_add_new_page(vm_paddr_t pa)
|
|||
break;
|
||||
}
|
||||
if (pa == trunc_page(bad)) {
|
||||
printf("Skipping page with pa 0x%x\n", pa);
|
||||
printf("Skipping page with pa 0x%jx\n",
|
||||
(uintmax_t)pa);
|
||||
freeenv(list);
|
||||
return (NULL);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue