diff options
Diffstat (limited to 'src/std')
-rw-r--r-- | src/std/arena_allocator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/std/arena_allocator.c b/src/std/arena_allocator.c index 20f0394..14787f1 100644 --- a/src/std/arena_allocator.c +++ b/src/std/arena_allocator.c @@ -105,6 +105,6 @@ int arena_allocator_alloc(ArenaAllocator *self, usize size, void **mem) { int arena_allocator_add_mem(ArenaAllocator *self, usize *result_index) { void *null_data; null_data = NULL; - *result_index = buffer_get_size(&self->mems, sizeof(void*)); + *result_index = buffer_get_size(&self->mems, void*); return buffer_append(&self->mems, &null_data, sizeof(void*)); } |