IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 24, 2005, 4:02:05 PM (21 years ago)
Author:
drobbin
Message:

changed psFreeFcn to psFreeFunc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataManip/psStats.c

    r4315 r4392  
    1414 *      stats->binsize
    1515 *
    16  *  @version $Revision: 1.134 $ $Name: not supported by cvs2svn $
    17  *  @date $Date: 2005-06-18 02:30:49 $
     16 *  @version $Revision: 1.135 $ $Name: not supported by cvs2svn $
     17 *  @date $Date: 2005-06-25 02:02:05 $
    1818 *
    1919 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    18101810    // bins, then there are N+1 bounds to those bins.
    18111811    newHist = (psHistogram* ) psAlloc(sizeof(psHistogram));
    1812     psMemSetDeallocator(newHist, (psFreeFcn) histogramFree);
     1812    psMemSetDeallocator(newHist, (psFreeFunc) histogramFree);
    18131813    newHist->bounds = psVectorAlloc(n + 1, PS_TYPE_F32);
    18141814    newHist->bounds->n = newHist->bounds->nalloc;
     
    18571857    // Allocate memory for the new histogram structure.
    18581858    newHist = (psHistogram* ) psAlloc(sizeof(psHistogram));
    1859     psMemSetDeallocator(newHist, (psFreeFcn) histogramFree);
     1859    psMemSetDeallocator(newHist, (psFreeFunc) histogramFree);
    18601860    newHist->bounds = psVectorAlloc(bounds->n, PS_TYPE_F32);
    18611861    newHist->bounds->n = newHist->bounds->nalloc;
Note: See TracChangeset for help on using the changeset viewer.