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

Location:
trunk/psLib/src/mathtypes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/mathtypes/psImage.c

    r4330 r4392  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.70 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-06-21 03:01:37 $
     11 *  @version $Revision: 1.71 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-06-25 02:02:05 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6767    psImage* image = (psImage* ) psAlloc(sizeof(psImage));
    6868
    69     psMemSetDeallocator(image, (psFreeFcn) imageFree);
     69    psMemSetDeallocator(image, (psFreeFunc) imageFree);
    7070
    7171    image->data.V = psAlloc(sizeof(psPtr ) * numRows);
  • trunk/psLib/src/mathtypes/psVector.c

    r4330 r4392  
    99*  @author Robert DeSonia, MHPCC
    1010*
    11 *  @version $Revision: 1.43 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2005-06-21 03:01:37 $
     11*  @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2005-06-25 02:02:05 $
    1313*
    1414*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6363    // Create vector struct
    6464    psVec = (psVector* ) psAlloc(sizeof(psVector));
    65     psMemSetDeallocator(psVec, (psFreeFcn) vectorFree);
     65    psMemSetDeallocator(psVec, (psFreeFunc) vectorFree);
    6666
    6767    psVec->type.dimen = PS_DIMEN_VECTOR;
Note: See TracChangeset for help on using the changeset viewer.