From 60c7d789ce21cb77bdf9dd2c8cb22e86232d903f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 11 Feb 2019 01:34:40 +0100 Subject: Rewrote content_line, and how parameters are stored. --- vector.inc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vector.inc.h') diff --git a/vector.inc.h b/vector.inc.h index 68f302cd..f6d1c796 100644 --- a/vector.inc.h +++ b/vector.inc.h @@ -7,7 +7,7 @@ INIT_F(VECT(TYPE)) { this->length = 0; - this->alloc = 0x10; + this->alloc = 1; this->items = calloc(sizeof(*this->items), this->alloc); return 0; } -- cgit v1.2.3