Index: trunk/archive/pslib/include/psMetadata.h
===================================================================
--- trunk/archive/pslib/include/psMetadata.h	(revision 400)
+++ trunk/archive/pslib/include/psMetadata.h	(revision 401)
@@ -78,10 +78,10 @@
 
 /// Add entry to the end of the metadata
-psMetadataItem *psMetadataAppend(psMetadata *restrict ms, ///< metadata to add to
+psMetadataItem *psMetadataAppend(psMetadata *restrict md, ///< metadata to add to
 				 psMetadataItem *restrict item ///< Metatdata to add
     );
 
 /// delete entry from the metadata
-psMetadataItem *psMetadataRemove(psMetadata *restrict ms, ///< metadata to delete from
+psMetadataItem *psMetadataRemove(psMetadata *restrict md, ///< metadata to delete from
 				 const char *restrict key ///< Key to delete
     );
@@ -92,10 +92,10 @@
 
 /// get the next entry in the sequence
-psMetadataItem *psMetadataGetNext(psMetadata *restrict ms, ///< metadata to get from
+psMetadataItem *psMetadataGetNext(psMetadata *restrict md, ///< metadata to get from
 				  const char *restrict match ///< Match this
     );
 
 /// find the metadata with the specified key
-psMetadataItem *psMetadataLookup(const psMetadata *restrict ms, ///< metadata to look up
+psMetadataItem *psMetadataLookup(const psMetadata *restrict md, ///< metadata to look up
 				 const char *restrict key ///< Key to find
     );
@@ -103,5 +103,5 @@
 /// print metadata item to the specified stream
 void psMetadataItemPrint(FILE *fd,		///< file descriptor to write to
-			 const psMetadataItem *restrict ms, ///< item of metadata to print
+			 const psMetadataItem *restrict md, ///< item of metadata to print
 			 const char *prefix	   ///< print this at the beginning of each line
     );
