gingerBill 3 years ago
parent
commit
b0a09f7b9e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/mem/virtual/growing_arena.odin

+ 1 - 1
core/mem/virtual/growing_arena.odin

@@ -13,7 +13,7 @@ Growing_Arena :: struct {
 
 
 DEFAULT_MINIMUM_BLOCK_SIZE :: 1<<20 // 1 MiB should be enough
 DEFAULT_MINIMUM_BLOCK_SIZE :: 1<<20 // 1 MiB should be enough
 
 
-growing_arena_init :: proc(arena: ^Static_Arena, reserved: uint = DEFAULT_MINIMUM_BLOCK_SIZE) -> (err: Allocator_Error) {
+growing_arena_init :: proc(arena: ^Growing_Arena, reserved: uint = DEFAULT_MINIMUM_BLOCK_SIZE) -> (err: Allocator_Error) {
 	arena.block = memory_block_alloc(0, reserved, {}) or_return
 	arena.block = memory_block_alloc(0, reserved, {}) or_return
 	arena.total_used = 0
 	arena.total_used = 0
 	arena.total_reserved = arena.block.reserved
 	arena.total_reserved = arena.block.reserved