From d37d66bb3a089b9e66c6629a4855560984ac720d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Fri, 12 Mar 2021 16:46:55 +0100 Subject: InfoScreen/ProcessList: do not access Vector internals Use wrapper function to encapsulate the Vector structure --- ProcessList.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ProcessList.c') diff --git a/ProcessList.c b/ProcessList.c index 869bde44..cb89b720 100644 --- a/ProcessList.c +++ b/ProcessList.c @@ -202,7 +202,7 @@ static void ProcessList_updateTreeSetLayer(ProcessList* this, unsigned int leftB if (layerSize == 0) return; - Vector* layer = Vector_new(this->processes->type, false, layerSize); + Vector* layer = Vector_new(Vector_type(this->processes), false, layerSize); // Find all processes on the same layer (process with the same `deep` value // and included in a range from `leftBound` to `rightBound`). -- cgit v1.2.3