mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
fdt_loader_cmd.c: fix compilation with DEBUG
It was broken on 64-bit platforms.
This commit is contained in:
parent
c808bee35b
commit
13e520658e
1 changed files with 1 additions and 1 deletions
|
|
@ -990,7 +990,7 @@ int
|
|||
fdt_copy(vm_offset_t va)
|
||||
{
|
||||
int err;
|
||||
debugf("fdt_copy va 0x%08x\n", va);
|
||||
debugf("fdt_copy va 0x%08jx\n", (uintmax_t)va);
|
||||
if (fdtp == NULL) {
|
||||
err = fdt_setup_fdtp();
|
||||
if (err) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue