diff -r 07a284486fa1 -r c766c423dee6 ucx/list.c --- a/ucx/list.c Wed Oct 21 16:32:30 2015 +0200 +++ b/ucx/list.c Thu Oct 22 11:35:40 2015 +0200 @@ -76,7 +76,7 @@ } } -void ucx_list_free_contents(UcxList* list, ucx_destructor destr) { +void ucx_list_free_content(UcxList* list, ucx_destructor destr) { while (list != NULL) { destr(list->data); list = list->next;