diff options
author | Ian Moffett <ian@osmora.org> | 2025-02-21 13:42:39 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-02-21 13:42:39 -0500 |
commit | 6ceef43179c70852f001f1205ff92ebba4d0d4d7 (patch) | |
tree | 7b5741067bfd89a78750fa05456bd95274317543 /sys/vm/vm_init.c | |
parent | d20d25df529f6e8949fd12afe281dea65b22f17f (diff) | |
parent | e3099277531b7b1be0aa6656a3eab3960ab6ede0 (diff) |
Merge branch 'expt'main
Hyra v1.4
Diffstat (limited to 'sys/vm/vm_init.c')
-rw-r--r-- | sys/vm/vm_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c index 8f40e9d..2846a69 100644 --- a/sys/vm/vm_init.c +++ b/sys/vm/vm_init.c @@ -61,7 +61,7 @@ vm_init(void) vm_ctx.dynalloc_pool_sz = DYNALLOC_POOL_SZ; vm_ctx.dynalloc_pool_pa = vm_alloc_frame(DYNALLOC_POOL_PAGES); if (vm_ctx.dynalloc_pool_pa == 0) { - panic("Failed to allocate dynamic pool\n"); + panic("failed to allocate dynamic pool\n"); } pool = PHYS_TO_VIRT(vm_ctx.dynalloc_pool_pa); |