Index: trunk/psLib/src/sys/psString.h
===================================================================
--- trunk/psLib/src/sys/psString.h	(revision 12296)
+++ trunk/psLib/src/sys/psString.h	(revision 12517)
@@ -11,6 +11,6 @@
  * @author Joshua Hoblitt, University of Hawaii
  *
- * @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
- * @date $Date: 2007-03-07 22:30:23 $
+ * @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
+ * @date $Date: 2007-03-21 21:37:58 $
  *
  * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -46,5 +46,5 @@
 #ifdef DOXYGEN
 psString psStringAlloc(
-    long nChar                         ///< Size of psString to allocate.
+    size_t nChar                        ///< Size of psString to allocate.
 );
 #else // ifdef DOXYGEN
@@ -53,5 +53,5 @@
     unsigned int lineno,                ///< Line number of caller
     const char *func,                   ///< Function name of caller
-    long nChar                         ///< Size of psString to allocate.
+    size_t nChar                        ///< Size of psString to allocate.
 );
 #define psStringAlloc(nChar) \
@@ -110,6 +110,6 @@
 #ifdef DOXYGEN
 psString psStringNCopy(
-    const char *string,                ///< Input string of characters to copy
-    unsigned int nChar                 ///< Number of bytes to allocate for string copy
+    const char *string,                 ///< Input string of characters to copy
+    size_t nChar                        ///< Number of bytes to allocate for string copy
 );
 #else // ifdef DOXYGEN
@@ -119,5 +119,5 @@
     const char *func,                   ///< Function name of caller
     const char *string,                 ///< Input string of characters to copy
-    unsigned int nChar                  ///< Number of bytes to allocate for string copy
+    size_t nChar                        ///< Number of bytes to allocate for string copy
 );
 #define psStringNCopy(string, nChar) \
