IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 6, 2007, 3:15:50 PM (19 years ago)
Author:
jhoblitt
Message:

change psFree() macro to *NOT* cast all pointers to (void *)
change psFree() macro to not append a ';' to the line
change all psMemory functions to pass file, lineno, func as the first 3 params

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psHistogram.c

    r10999 r11674  
    55 *  @author GLG (MHPCC), EAM (IfA)
    66 *
    7  *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2007-01-09 22:38:53 $
     7 *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2007-02-07 01:15:49 $
    99 *
    1010 *  Copyright 2006 IfA, University of Hawaii
     
    127127static void histogramFree(psHistogram* myHist)
    128128{
    129     psFree(myHist->bounds);
     129    psFree((void *)myHist->bounds);
    130130    psFree(myHist->nums);
    131131}
Note: See TracChangeset for help on using the changeset viewer.