mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 08:12:27 -04:00
kern: physmem: don't truncate addresses in DEBUG output
Make it consistent with the above region printing, otherwise it appears to be somewhat confusing.
This commit is contained in:
parent
c7c3481621
commit
cd73914b01
1 changed files with 2 additions and 2 deletions
|
|
@ -149,10 +149,10 @@ physmem_dump_tables(int (*prfunc)(const char *, ...))
|
|||
#ifdef DEBUG
|
||||
prfunc("Avail lists:\n");
|
||||
for (i = 0; phys_avail[i] != 0; ++i) {
|
||||
prfunc(" phys_avail[%d] 0x%08x\n", i, phys_avail[i]);
|
||||
prfunc(" phys_avail[%d] 0x%08jx\n", i, phys_avail[i]);
|
||||
}
|
||||
for (i = 0; dump_avail[i] != 0; ++i) {
|
||||
prfunc(" dump_avail[%d] 0x%08x\n", i, dump_avail[i]);
|
||||
prfunc(" dump_avail[%d] 0x%08jx\n", i, dump_avail[i]);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue