Index: /trunk/psLib/src/sys/psString.c
===================================================================
--- /trunk/psLib/src/sys/psString.c	(revision 545)
+++ /trunk/psLib/src/sys/psString.c	(revision 546)
@@ -8,6 +8,6 @@
  *  @author Eric Van Alst, MHPCC
  *   
- *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-04-27 22:39:48 $
+ *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-04-28 22:20:22 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -82,5 +82,5 @@
     // Copy input string to memory allocated up to nChar characters
     // Return the copy
-    return strncpy(psAlloc(nChar + 1), str, nChar);
+    return strncpy(psAlloc((size_t)nChar + 1), str, (size_t)nChar);
 }
 
Index: /trunk/psLib/src/sysUtils/psString.c
===================================================================
--- /trunk/psLib/src/sysUtils/psString.c	(revision 545)
+++ /trunk/psLib/src/sysUtils/psString.c	(revision 546)
@@ -8,6 +8,6 @@
  *  @author Eric Van Alst, MHPCC
  *   
- *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-04-27 22:39:48 $
+ *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-04-28 22:20:22 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -82,5 +82,5 @@
     // Copy input string to memory allocated up to nChar characters
     // Return the copy
-    return strncpy(psAlloc(nChar + 1), str, nChar);
+    return strncpy(psAlloc((size_t)nChar + 1), str, (size_t)nChar);
 }
 
