Index: trunk/psLib/src/image/psImage.c
===================================================================
--- trunk/psLib/src/image/psImage.c	(revision 1634)
+++ trunk/psLib/src/image/psImage.c	(revision 1653)
@@ -10,6 +10,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-27 19:05:40 $
+ *  @version $Revision: 1.42 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-28 01:18:28 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -17,10 +17,4 @@
  *  That is the routine used to generate matrices.
  */
-
-/******************************************************************************/
-
-/*  INCLUDE FILES                                                             */
-
-/******************************************************************************/
 
 #include <string.h>
@@ -33,10 +27,4 @@
 
 static void imageFree(psImage* image);
-
-/*****************************************************************************/
-
-/* FUNCTION IMPLEMENTATION - PUBLIC                                          */
-
-/*****************************************************************************/
 
 psImage* psImageAlloc(unsigned int numCols,
@@ -52,5 +40,7 @@
     if (area < 1) {
         psError(__func__,
-                "Invalid value for number of rows or columns " "(numRows=%d, numCols=%d).", numRows, numCols);
+                "Invalid value for number of rows or columns "
+                "(numRows=%d, numCols=%d).",
+                numRows, numCols);
         return NULL;
     }
@@ -129,13 +119,6 @@
                         const psElemType type)
 {
-    int elementSize = PSELEMTYPE_SIZEOF(type);  // element
-
-    // size in
-    // bytes
-    int rowSize = numCols * elementSize;        // row
-
-    // size
-
-    // in bytes.
+    int elementSize = PSELEMTYPE_SIZEOF(type);  // element size in bytes
+    int rowSize = numCols * elementSize;        // row size in bytes.
 
     if (old == NULL) {
@@ -145,5 +128,6 @@
 
     if (old->type.dimen != PS_DIMEN_IMAGE) {
-        psError(__func__, "Can not realloc image because input is not an image.");
+        psError(__func__,
+                "Can not realloc image because input is not an image.");
         return NULL;
     }
@@ -166,9 +150,11 @@
 
     /* image already the right size/type? */
-    if (numCols == old->numCols && numRows == old->numRows && type == old->type.type) {
+    if (numCols == old->numCols && numRows == old->numRows &&
+            type == old->type.type) {
         return old;
     }
     // Resize the image buffer
-    old->rawDataBuffer = psRealloc(old->data.V[0], numCols * numRows * elementSize);
+    old->rawDataBuffer = psRealloc(old->data.V[0],
+                                   numCols * numRows * elementSize);
     old->data.V = (void **)psRealloc(old->data.V, numRows * sizeof(void *));
 
