aboutsummaryrefslogtreecommitdiff
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c
index d5e6d97..a097cbf 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -4,13 +4,12 @@
#include "../include/scoped_allocator.h"
#include <assert.h>
-int buffer_init(Buffer *self, ScopedAllocator *allocator) {
+int buffer_init(Buffer *self, struct ScopedAllocator *allocator) {
self->data = NULL;
self->size = 0;
self->capacity = 0;
- self->allocator = allocator;
- if(self->allocator)
- return scoped_allocator_add_buffer(self->allocator, self);
+ if(allocator)
+ return scoped_allocator_add_buffer(allocator, self);
return 0;
}