Kernel: Fix a dmesgln() format error
This commit is contained in:
parent
1c4e15117d
commit
531d72fdfd
Notes:
sideshowbarker
2024-07-18 22:00:06 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/531d72fdfda Pull-request: https://github.com/SerenityOS/serenity/pull/5468
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue