Fix temporary_allocator

This commit is contained in:
gingerBill
2025-09-14 17:21:33 +01:00
parent e0a97a628d
commit 22261f9e71

View File

@@ -481,7 +481,7 @@ gb_internal gbAllocator permanent_allocator() {
}
gb_internal gbAllocator temporary_allocator() {
return {thread_arena_allocator_proc, cast(void *)cast(uintptr)ThreadArena_Permanent};
return {thread_arena_allocator_proc, cast(void *)cast(uintptr)ThreadArena_Temporary};
}