提交 d9f8b62a 编写于 作者: J Jeff Dike 提交者: Linus Torvalds

[PATCH] uml: fix some printf formats

Some printf formats are incorrect for large memory sizes.
Signed-off-by: NJeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 c90e12b8
...@@ -421,7 +421,7 @@ int linux_main(int argc, char **argv) ...@@ -421,7 +421,7 @@ int linux_main(int argc, char **argv)
#ifndef CONFIG_HIGHMEM #ifndef CONFIG_HIGHMEM
highmem = 0; highmem = 0;
printf("CONFIG_HIGHMEM not enabled - physical memory shrunk " printf("CONFIG_HIGHMEM not enabled - physical memory shrunk "
"to %lu bytes\n", physmem_size); "to %Lu bytes\n", physmem_size);
#endif #endif
} }
...@@ -433,8 +433,8 @@ int linux_main(int argc, char **argv) ...@@ -433,8 +433,8 @@ int linux_main(int argc, char **argv)
setup_physmem(uml_physmem, uml_reserved, physmem_size, highmem); setup_physmem(uml_physmem, uml_reserved, physmem_size, highmem);
if(init_maps(physmem_size, iomem_size, highmem)){ if(init_maps(physmem_size, iomem_size, highmem)){
printf("Failed to allocate mem_map for %lu bytes of physical " printf("Failed to allocate mem_map for %Lu bytes of physical "
"memory and %lu bytes of highmem\n", physmem_size, "memory and %Lu bytes of highmem\n", physmem_size,
highmem); highmem);
exit(1); exit(1);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册