Index: /trunk/psLib/src/mathtypes/psVector.c
===================================================================
--- /trunk/psLib/src/mathtypes/psVector.c	(revision 9552)
+++ /trunk/psLib/src/mathtypes/psVector.c	(revision 9553)
@@ -9,6 +9,6 @@
 *  @author Robert DeSonia, MHPCC
 *
-*  @version $Revision: 1.84 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-10-13 23:54:34 $
+*  @version $Revision: 1.85 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2006-10-14 00:07:13 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -487,6 +487,6 @@
 }
 
-char* psVectorToString(const psVector* vector,
-                       int maxLength)
+psString psVectorToString(const psVector* vector,
+                          int maxLength)
 {
 
@@ -495,5 +495,5 @@
     }
 
-    char* str = psAlloc(sizeof(char)*maxLength+1);
+    psString str = psStringAlloc(maxLength + 1);
 
     if (vector == NULL) {
@@ -509,5 +509,5 @@
     }
 
-    char* tempStr = psAlloc(sizeof(char)*maxLength+1);
+    psString tempStr = psStringAlloc(maxLength+1);
     *str = '\0';
     bool full = false;
Index: /trunk/psLib/src/mathtypes/psVector.h
===================================================================
--- /trunk/psLib/src/mathtypes/psVector.h	(revision 9552)
+++ /trunk/psLib/src/mathtypes/psVector.h	(revision 9553)
@@ -11,6 +11,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-10-13 23:54:34 $
+ *  @version $Revision: 1.58 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-10-14 00:07:13 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -175,5 +175,5 @@
  *  @return psPtr          a newly allocated string
  */
-char* psVectorToString(
+psString psVectorToString(
     const psVector* vector,             ///< vector to create a string from
     int maxLength                      ///< the maximum length of the resulting string
