Changeset 14077
- Timestamp:
- Jul 9, 2007, 10:11:29 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/astro/psTime.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astro/psTime.c
r13950 r14077 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1.11 3$ $Name: not supported by cvs2svn $13 * @date $Date: 2007-0 6-22 02:28:48$12 * @version $Revision: 1.114 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2007-07-09 20:11:29 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 1690 1690 1691 1691 if (*lastChar != '\0') { 1692 psTrace("psLib.astro m", 3, "handling fractional second in time string\n");1692 psTrace("psLib.astro", 3, "handling fractional second in time string\n"); 1693 1693 // XXXXXXXXXXXXXXX 1694 1694 // XXX this is a really stupid error: … … 1844 1844 psTime *psTimeCopy(const psTime *inTime) 1845 1845 { 1846 PS_ASSERT_PTR_NON_NULL(inTime, NULL); 1846 // Pass through NULL values! 1847 if (!inTime) { 1848 psTrace("psLib.astro", 6, "passing through NULL value"); 1849 return NULL; 1850 } 1851 1847 1852 psTime *outTime = psTimeAlloc(inTime->type); 1848 1853 if (outTime == NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.
