ucx/list.c

changeset 212
c766c423dee6
parent 211
07a284486fa1
child 225
a1a068c2c4ef
     1.1 --- a/ucx/list.c	Wed Oct 21 16:32:30 2015 +0200
     1.2 +++ b/ucx/list.c	Thu Oct 22 11:35:40 2015 +0200
     1.3 @@ -76,7 +76,7 @@
     1.4      }
     1.5  }
     1.6  
     1.7 -void ucx_list_free_contents(UcxList* list, ucx_destructor destr) {
     1.8 +void ucx_list_free_content(UcxList* list, ucx_destructor destr) {
     1.9      while (list != NULL) {
    1.10          destr(list->data);
    1.11          list = list->next;

mercurial