Navigation



Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libfdproto/lists.c

    r1001 r740  
    7575void fd_list_move_end(struct fd_list * ref, struct fd_list * senti)
    7676{
    77         struct fd_list * li;
    7877        ASSERT(ref->head == ref);
    7978        ASSERT(senti->head == senti);
     
    8180        if (senti->next == senti)
    8281                return;
    83        
    84         for (li = senti->next; li != senti; li = li->next)
    85                 li->head = ref;
    8682       
    8783        senti->next->prev = ref->prev;
Note: See TracChangeset for help on using the changeset viewer.