mirror of
https://review.haiku-os.org/haiku
synced 2025-01-31 18:56:49 +01:00
kernel/allocator: Add missed change to block_allocator_init_boot().
This commit is contained in:
parent
9e89f7c068
commit
35d9b4075a
@ -165,7 +165,7 @@ block_free(void* block, uint32 flags)
|
||||
void
|
||||
block_allocator_init_boot()
|
||||
{
|
||||
for (int index = 0; kBlockSizes[index] != 0; index++) {
|
||||
for (int index = 0; index < kNumBlockSizes; index++) {
|
||||
char name[32];
|
||||
snprintf(name, sizeof(name), "block allocator: %lu",
|
||||
kBlockSizes[index]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user