diff options
author | jbranso@dismail.de <jbranso@dismail.de> | 2024-10-20 15:07:41 -0400 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-10-21 00:33:56 +0200 |
commit | 257e2f8c3b4dc4175ea5f093bf59e076107a0ef8 (patch) | |
tree | 15d4d9059de77cf76574f84735925f60d12a41c1 /vm | |
parent | ffea9f1e88c4d6b58c3afae3607f5d6c73eca687 (diff) | |
download | gnumach-257e2f8c3b4dc4175ea5f093bf59e076107a0ef8.tar.gz gnumach-257e2f8c3b4dc4175ea5f093bf59e076107a0ef8.tar.bz2 gnumach-257e2f8c3b4dc4175ea5f093bf59e076107a0ef8.zip |
fix a compile warning.
* vm/vm_page.c(vm_page_setup): %lu -> %zu
vm/vm_page.c: In function 'vm_page_setup':
vm/vm_page.c:1425:41: warning: format '%lu' expects argument of type 'long unsigned int', but argument 2 has type 'size_t' {aka 'unsigned int'} [-Wformat=]
1425 | printf("vm_page: page table size: %lu entries (%luk)\n", nr_pages,
| ~~^ ~~~~~~~~
| | |
| long unsigned int size_t {aka unsigned int}
| %u
vm/vm_page.c:1425:54: warning: format '%lu' expects argument of type 'long unsigned int', but argument 3 has type 'size_t' {aka 'unsigned int'} [-Wformat=]
1425 | printf("vm_page: page table size: %lu entries (%luk)\n", nr_pages,
| ~~^
| |
| long unsigned int
| %u
1426 | table_size >> 10);
| ~~~~~~~~~~~~~~~~
| |
| size_t {aka unsigned int}
Message-ID: <20241020190744.2522-1-jbranso@dismail.de>
Diffstat (limited to 'vm')
-rw-r--r-- | vm/vm_page.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/vm/vm_page.c b/vm/vm_page.c index 04decbbd..286fe62f 100644 --- a/vm/vm_page.c +++ b/vm/vm_page.c @@ -1422,8 +1422,9 @@ vm_page_setup(void) nr_pages += vm_page_atop(vm_page_boot_seg_size(&vm_page_boot_segs[i])); table_size = vm_page_round(nr_pages * sizeof(struct vm_page)); - printf("vm_page: page table size: %lu entries (%luk)\n", nr_pages, - table_size >> 10); + printf("vm_page: page table size: %lu entries (%luk)\n", + (unsigned long) nr_pages, + (unsigned long) (table_size >> 10)); table = (struct vm_page *)pmap_steal_memory(table_size); va = (unsigned long)table; |