summaryrefslogtreecommitdiff
path: root/sys/vm
diff options
context:
space:
mode:
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/vm_init.c2
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);