Index: trunk/psLib/src/astro/psCoord.c
===================================================================
--- trunk/psLib/src/astro/psCoord.c	(revision 9540)
+++ trunk/psLib/src/astro/psCoord.c	(revision 9730)
@@ -10,6 +10,6 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.125 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-10-13 22:04:58 $
+*  @version $Revision: 1.126 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2006-10-24 22:52:55 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -795,13 +795,9 @@
     psVector *xOut = psVectorAlloc(numCoords, PS_TYPE_F64);
     psVector *yOut = psVectorAlloc(numCoords, PS_TYPE_F64);
-    for (psS32 g = 0; g < numCoords; g++) {
+    for (int g = 0; g < numCoords; g++) {
         xIn->data.F64[g] = ((psPlane *) source->data[g])->x;
-        xIn->n++;
         yIn->data.F64[g] = ((psPlane *) source->data[g])->y;
-        yIn->n++;
         xOut->data.F64[g] = ((psPlane *) dest->data[g])->x;
-        xOut->n++;
         yOut->data.F64[g] = ((psPlane *) dest->data[g])->y;
-        yOut->n++;
     }
 
