Index: trunk/psLib/src/collections/psMetadataIO.c
===================================================================
--- trunk/psLib/src/collections/psMetadataIO.c	(revision 2004)
+++ trunk/psLib/src/collections/psMetadataIO.c	(revision 2011)
@@ -9,6 +9,6 @@
 *  @author Ross Harman, MHPCC
 *
-*  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-10-07 19:31:59 $
+*  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-10-07 20:49:57 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -463,4 +463,5 @@
     int failedLines = 0;
     psF64 tempDbl = 0.0;
+    psS32 tempInt = 0.0;
     psMetadataItem *metadataItem = NULL;
     psVector *tempVec = NULL;
@@ -613,4 +614,14 @@
                 break;
             case PS_META_S32:
+                tempInt = (psS32)parseValue(strValue, &status);
+                if(!status) {
+                    psMetadataAdd(*md, PS_LIST_TAIL, strName, mdType, strComment, tempInt);
+                } else {
+                    status = 0;
+                    failedLines++;
+                    psError(__func__, "Failed to parse value. Value: %s Line %d: %s", strValue, lineCount, line);
+                    continue;
+                }
+                break;
             case PS_META_F32:
             case PS_META_F64:
