IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 20, 2004, 6:12:37 PM (22 years ago)
Author:
eugene
Message:

substantial API changes based on change to PSLib SDRS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/src/Utils/dlist.c

    r707 r753  
    317317    psDlistElem *ptr = dlist->head;
    318318    for (int i = 0, n = dlist->n; i < n; i++) {
    319         arr->arr.arr_v[i] = ptr->data;
    320 
     319        arr->data.V[i] = ptr->data;
    321320        ptr->data = NULL;
    322321        ptr = ptr->next;
     
    339338    for (int i = 0, n = arr->n; i < n; i++) {
    340339        psDlistAppend(list,
    341                       psMemDecrRefCounter(arr->arr.arr_v[i])); // it\'s already Incr
    342         arr->arr.arr_v[i] = NULL;
     340                      psMemDecrRefCounter(arr->data.V[i])); // it\'s already Incr
     341        arr->data.V[i] = NULL;
    343342    }
    344343
Note: See TracChangeset for help on using the changeset viewer.