Index: trunk/psLib/src/dataManip/psMatrix.c
===================================================================
--- trunk/psLib/src/dataManip/psMatrix.c	(revision 3341)
+++ trunk/psLib/src/dataManip/psMatrix.c	(revision 3476)
@@ -21,6 +21,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-28 23:34:10 $
+ *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-03-22 21:52:49 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -216,5 +216,5 @@
 
     (*outPerm)->n = numCols;
-    perm.data = (*outPerm)->data.V;
+    perm.data = (psPtr)((*outPerm)->data.U8);
     lu = gsl_matrix_alloc(numRows, numCols);
 
@@ -273,5 +273,5 @@
     outVector->n = numCols;
     perm.size = inPerm->n;
-    perm.data = inPerm->data.V;
+    perm.data = (psPtr)(inPerm->data.U8);
 
     // Solve for {x} in equation: {b} = [A]{x}
@@ -580,5 +580,5 @@
     }
 
-    memcpy(outVector->data.V, inImage->data.V[0], size);
+    memcpy(outVector->data.U8, inImage->data.U8[0], size);
 
     return outVector;
@@ -637,5 +637,5 @@
     PS_CHECK_DIMEN_AND_TYPE(outImage, PS_DIMEN_IMAGE, VECTORTOMATRIX_CLEANUP);
 
-    memcpy(outImage->data.V[0], inVector->data.V, size);
+    memcpy(outImage->data.U8[0], inVector->data.U8, size);
 
     return outImage;
