summaryrefslogtreecommitdiffstats
path: root/Header.c
diff options
context:
space:
mode:
Diffstat (limited to 'Header.c')
-rw-r--r--Header.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Header.c b/Header.c
index ddd35e81..b55b557b 100644
--- a/Header.c
+++ b/Header.c
@@ -35,8 +35,8 @@ typedef struct Header_ {
Header* Header_new(ProcessList* pl) {
Header* this = malloc(sizeof(Header));
- this->leftMeters = Vector_new(METER_CLASS, true, DEFAULT_SIZE);
- this->rightMeters = Vector_new(METER_CLASS, true, DEFAULT_SIZE);
+ this->leftMeters = Vector_new(METER_CLASS, true, DEFAULT_SIZE, NULL);
+ this->rightMeters = Vector_new(METER_CLASS, true, DEFAULT_SIZE, NULL);
this->margin = true;
this->pl = pl;
return this;