Changeset 3108 for trunk/psLib/src/fileUtils/psFits.c
- Timestamp:
- Feb 2, 2005, 10:22:56 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/fileUtils/psFits.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/fileUtils/psFits.c
r3039 r3108 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1.1 5$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-0 1-18 20:01:48$9 * @version $Revision: 1.16 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-02-02 20:22:56 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 1069 1069 //transverse the metadata list and add each key. 1070 1070 1071 psListIterator* iter = psListIteratorAlloc(header->list,PS_LIST_HEAD );1071 psListIterator* iter = psListIteratorAlloc(header->list,PS_LIST_HEAD,true); 1072 1072 psMetadataItem* item; 1073 while ( (item=psListGet Next(iter)) != NULL ) {1073 while ( (item=psListGetAndIncrement(iter)) != NULL ) { 1074 1074 if (item->type == PS_META_PRIMITIVE) { // we only write primitive data types. 1075 1075 switch (item->pType) { … … 1485 1485 if (rowMeta != NULL) { 1486 1486 psListIterator* iter = psListIteratorAlloc(rowMeta->list, 1487 PS_LIST_HEAD );1488 while ( (item=psListGet Next(iter)) != NULL) {1487 PS_LIST_HEAD,true); 1488 while ( (item=psListGetAndIncrement(iter)) != NULL) { 1489 1489 if (item->type == PS_META_PRIMITIVE) { 1490 1490 bool found = false;
Note:
See TracChangeset
for help on using the changeset viewer.
