diff --git a/ot_vector.h b/ot_vector.h index 32ec26a194197bba449624ff9b1da9ed77d48d2a..1d42dd0d2ba57c72d0b1f0ad40893a8e2a86e126 100644 --- a/ot_vector.h +++ b/ot_vector.h @@ -7,10 +7,10 @@ #define __OT_VECTOR_H__ /* These defines control vectors behaviour */ -#define OT_VECTOR_MIN_MEMBERS 4 -#define OT_VECTOR_GROW_RATIO 8 -#define OT_VECTOR_SHRINK_THRESH 6 -#define OT_VECTOR_SHRINK_RATIO 4 +#define OT_VECTOR_MIN_MEMBERS 2 +#define OT_VECTOR_GROW_RATIO 2 +#define OT_VECTOR_SHRINK_THRESH 4 +#define OT_VECTOR_SHRINK_RATIO 2 typedef struct { void *data;