mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
Kernel: Fix a dmesgln() format error
This commit is contained in:
committed by
Andreas Kling
parent
1c4e15117d
commit
531d72fdfd
@@ -248,7 +248,7 @@ void* kmalloc_impl(size_t size)
|
||||
|
||||
void* ptr = g_kmalloc_global->m_heap.allocate(size);
|
||||
if (!ptr) {
|
||||
PANIC("kmalloc: Out of memory (requested size: {})");
|
||||
PANIC("kmalloc: Out of memory (requested size: {})", size);
|
||||
}
|
||||
|
||||
return ptr;
|
||||
|
||||
Reference in New Issue
Block a user