Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/adt/list.c

    rfeeac0d r9d58539  
    101101        unsigned int count = 0;
    102102       
    103         link_t *link = list_first(list);
    104         while (link != NULL) {
     103        list_foreach(*list, link) {
    105104                count++;
    106                 link = list_next(link, list);
    107105        }
    108106       
Note: See TracChangeset for help on using the changeset viewer.