Index: trunk/psLib/src/collections/psScalar.c
===================================================================
--- trunk/psLib/src/collections/psScalar.c	(revision 1407)
+++ trunk/psLib/src/collections/psScalar.c	(revision 1440)
@@ -9,6 +9,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-07 00:06:06 $
+ *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-09 23:34:57 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -71,10 +71,10 @@
 
 /*****************************************************************************/
-psScalar *psScalarAlloc(psC64 value, psElemType dataType)
+psScalar* psScalarAlloc(psC64 value, psElemType dataType)
 {
-    psScalar *scalar = NULL;
+    psScalar* scalar = NULL;
 
     // Create scalar
-    scalar = (psScalar *) psAlloc(sizeof(psScalar));
+    scalar = (psScalar* ) psAlloc(sizeof(psScalar));
     if (scalar == NULL) {
         psAbort(__func__, " : Line %d - Failed to allocate memory", __LINE__);
@@ -128,5 +128,5 @@
 }
 
-void psScalarFree(psScalar * restrict scalar)
+void psScalarFree(psScalar* restrict scalar)
 {
     if (scalar == NULL) {
