diff options
author | Richard Braun <rbraun@sceen.net> | 2012-10-03 01:23:21 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2012-10-03 01:26:08 +0200 |
commit | a4485f033c4ffa07955a45cad30424aedb89dff4 (patch) | |
tree | 136381bd711a9e6bd54b0c31fb347b35028911d1 /vm/vm_map.c | |
parent | 69504fc63720b4bf2677d6074285b82256bc9b83 (diff) |
x86: new architecture
Merge 32-bit IA-32 (i386) and 64-bit AMD64 (amd64) code into one common
architecture. The amd64 variant isn't functional yet.
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); } |