added missing semicolon

This commit is contained in:
2025-10-05 20:18:48 +02:00
parent 6374c47a62
commit a98dc38f45
+1 -1
View File
@@ -5,7 +5,7 @@ void *buffer_allocator_alloc(buffer_allocator_t *this, size_t bytes) {
if (new_size > this->capacity) { if (new_size > this->capacity) {
return NULL; return NULL;
} }
void *ptr = &this->data[this->size] void *ptr = &this->data[this->size];
this->size = new_size; this->size = new_size;
return ptr; return ptr;
} }