From a98dc38f45254df203ff558aae5792856e75997f Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Sun, 5 Oct 2025 20:18:48 +0200 Subject: [PATCH] added missing semicolon --- buffer_allocator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buffer_allocator.c b/buffer_allocator.c index c126ae6..daaca94 100644 --- a/buffer_allocator.c +++ b/buffer_allocator.c @@ -5,7 +5,7 @@ void *buffer_allocator_alloc(buffer_allocator_t *this, size_t bytes) { if (new_size > this->capacity) { return NULL; } - void *ptr = &this->data[this->size] + void *ptr = &this->data[this->size]; this->size = new_size; return ptr; }