Index: trunk/psLib/src/collections/psScalar.c
===================================================================
--- trunk/psLib/src/collections/psScalar.c	(revision 4330)
+++ trunk/psLib/src/collections/psScalar.c	(revision 4409)
@@ -8,6 +8,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-21 03:01:37 $
+ *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-28 20:17:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -22,5 +22,5 @@
 #include "psCollectionsErrors.h"
 
-psScalar* psScalarAlloc(psC64 value, psElemType dataType)
+psScalar* psScalarAlloc(complex value, psElemType type)
 {
     psScalar* scalar = NULL;
@@ -30,7 +30,7 @@
 
     scalar->type.dimen = PS_DIMEN_SCALAR;
-    scalar->type.type = dataType;
+    scalar->type.type = type;
 
-    switch (dataType) {
+    switch (type) {
     case PS_TYPE_S8:
         scalar->data.S8 = (psS8) value;
@@ -72,5 +72,5 @@
         psError(PS_ERR_BAD_PARAMETER_TYPE, true,
                 PS_ERRORTEXT_psScalar_UNSUPPORTED_TYPE,
-                dataType);
+                type);
         psFree(scalar);
         return NULL;
