aboutsummaryrefslogtreecommitdiff
path: root/vector.inc.h
diff options
context:
space:
mode:
Diffstat (limited to 'vector.inc.h')
-rw-r--r--vector.inc.h2
1 files changed, 1 insertions, 1 deletions
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;
}