Initializtion

This commit is contained in:
Kozar 2024-04-11 14:36:37 +02:00
parent 4d6b5938c9
commit 3765a6ef48

View File

@ -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;
}