summaryrefslogtreecommitdiff
path: root/vm/vm_phys.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm/vm_phys.c')
-rw-r--r--vm/vm_phys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/vm_phys.c b/vm/vm_phys.c
index 3e8a70f0..2852a034 100644
--- a/vm/vm_phys.c
+++ b/vm/vm_phys.c
@@ -527,7 +527,7 @@ vm_phys_setup(void)
pages += vm_page_atop(vm_phys_seg_size(&vm_phys_segs[i]));
map_size = P2ROUND(pages * sizeof(struct vm_page), PAGE_SIZE);
- printk("vm_phys: page table size: %u entries (%uk)\n", pages,
+ printk("vm_phys: page table size: %zu entries (%zuk)\n", pages,
map_size >> 10);
map = (struct vm_page *)vm_kmem_bootalloc(map_size);