mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 15:48:48 -04:00
Add leading zeros when printing the physical memory chunks on __powerpc64__.
Approved by: nwhitehorn (mentor)
This commit is contained in:
parent
52d0968b86
commit
c819dfaeba
1 changed files with 1 additions and 1 deletions
|
|
@ -202,7 +202,7 @@ cpu_startup(void *dummy)
|
|||
phys_avail[indx + 1] - phys_avail[indx];
|
||||
|
||||
#ifdef __powerpc64__
|
||||
printf("0x%16lx - 0x%16lx, %ld bytes (%ld pages)\n",
|
||||
printf("0x%016lx - 0x%016lx, %ld bytes (%ld pages)\n",
|
||||
#else
|
||||
printf("0x%08x - 0x%08x, %d bytes (%ld pages)\n",
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue