diff options
Diffstat (limited to 'vm/vm_map.c')
-rw-r--r-- | vm/vm_map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/vm_map.c b/vm/vm_map.c index 4030cdc6..f9c6479e 100644 --- a/vm/vm_map.c +++ b/vm/vm_map.c @@ -640,5 +640,5 @@ vm_map_info(struct vm_map *map) entry->flags, type); } - printk("vm_map: total: %uk\n", map->size >> 10); + printk("vm_map: total: %zuk\n", map->size >> 10); } |