Index: trunk/psLib/test/dataManip/tst_psMatrix05.c
===================================================================
--- trunk/psLib/test/dataManip/tst_psMatrix05.c	(revision 1347)
+++ trunk/psLib/test/dataManip/tst_psMatrix05.c	(revision 1406)
@@ -10,6 +10,6 @@
 *  @author  Ross Harman, MHPCC
 *
-*  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
-*  @date  $Date: 2004-07-30 03:13:08 $
+*  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
+*  @date  $Date: 2004-08-06 22:34:06 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -22,11 +22,11 @@
 #define PRINT_MATRIX(IMAGE)                         \
 for(int i=0; i<IMAGE->numRows; i++) {           \
-        for(int j=0; j<IMAGE->numCols; j++) {       \
-                printf("%f ", IMAGE->data.F64[i][j]);   \
-            }                                          \
-        printf("\n");                              \
-    }
-    
-    
+    for(int j=0; j<IMAGE->numCols; j++) {       \
+        printf("%f ", IMAGE->data.F64[i][j]);   \
+    }                                          \
+    printf("\n");                              \
+}
+
+
 int main( int argc,
           char* argv[] )
@@ -35,6 +35,6 @@
     psImage *inImage1 = NULL;
     psImage *inImage2 = NULL;
-    
-    
+
+
     // Test A - Create input and output images
     printPositiveTestHeader( stdout, "psMatrix", "Create input and output images" );
@@ -54,6 +54,6 @@
     PRINT_MATRIX( inImage2 );
     printFooter( stdout, "psMatrix", "Create input and output images", true );
-    
-    
+
+
     // Test B - Multiply images
     printPositiveTestHeader( stdout, "psMatrix", "Multiply images" );
@@ -61,6 +61,6 @@
     PRINT_MATRIX( outImage );
     printFooter( stdout, "psMatrix", "Multiply images", true );
-    
-    
+
+
     // Test C - Free input and output images
     printPositiveTestHeader( stdout, "psMatrix", "Free input and output images" );
@@ -70,12 +70,12 @@
     int nLeaks = psMemCheckLeaks( 0, NULL, stdout );
     if ( nLeaks != 0 ) {
-            printf( "ERROR: Found %d memory leaks\n", nLeaks );
-        }
+        printf( "ERROR: Found %d memory leaks\n", nLeaks );
+    }
     int nBad = psMemCheckCorruption( 0 );
     if ( nBad ) {
-            printf( "ERROR: Found %d bad memory blocks\n", nBad );
-        }
+        printf( "ERROR: Found %d bad memory blocks\n", nBad );
+    }
     printFooter( stdout, "psMatrix" , "Free input and output images", true );
-    
+
     return 0;
 }
