IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 10, 2004, 8:27:08 AM (22 years ago)
Author:
harman
Message:

Changed function argument

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astro/psTime.c

    r2313 r2318  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-11-09 02:03:28 $
     12 *  @version $Revision: 1.42 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-11-10 18:27:03 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    184184}
    185185
    186 bool psTimeInit(char *fileName)
     186bool psTimeInit(const char *fileName)
    187187{
    188188    bool foundTable = false;
     
    307307}
    308308
    309 void psTimeFinalize(void)
    310 {
    311     psFree(timeMetadata);
     309bool psTimeFinalize(void)
     310{
     311    bool result = false;
     312
     313
     314    if(timeMetadata != NULL) {
     315        psFree(timeMetadata);
     316        result = true;
     317    }
     318
     319    return result;
    312320}
    313321
Note: See TracChangeset for help on using the changeset viewer.