1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 06:54:59 +00:00

Kernel: Fix a dmesgln() format error

This commit is contained in:
AnotherTest 2021-02-22 02:35:36 +03:30 committed by Andreas Kling
parent 1c4e15117d
commit 531d72fdfd

View file

@ -248,7 +248,7 @@ void* kmalloc_impl(size_t size)
void* ptr = g_kmalloc_global->m_heap.allocate(size); void* ptr = g_kmalloc_global->m_heap.allocate(size);
if (!ptr) { if (!ptr) {
PANIC("kmalloc: Out of memory (requested size: {})"); PANIC("kmalloc: Out of memory (requested size: {})", size);
} }
return ptr; return ptr;