From 3765a6ef48a5a3a04b6567295fa315733d566baf Mon Sep 17 00:00:00 2001 From: ak643du Date: Thu, 11 Apr 2024 14:36:37 +0200 Subject: [PATCH] Initializtion --- cv4/list_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cv4/list_ops.c b/cv4/list_ops.c index 5bf3323..5d3f707 100644 --- a/cv4/list_ops.c +++ b/cv4/list_ops.c @@ -56,7 +56,7 @@ list_t *filter_list(list_t *list, bool (*filter)(list_element_t)) { if (filter(list->elements[i])) { filtered->elements[i] = list->elements[i]; } - } + } } return filtered; }