[postgis-tickets] r14953 - Fix typos in debug strings

Sandro Santilli strk at kbt.io
Wed Jun 15 09:31:03 PDT 2016


Author: strk
Date: 2016-06-15 09:31:02 -0700 (Wed, 15 Jun 2016)
New Revision: 14953

Modified:
   trunk/liblwgeom/ptarray.c
Log:
Fix typos in debug strings

Modified: trunk/liblwgeom/ptarray.c
===================================================================
--- trunk/liblwgeom/ptarray.c	2016-06-15 16:28:28 UTC (rev 14952)
+++ trunk/liblwgeom/ptarray.c	2016-06-15 16:31:02 UTC (rev 14953)
@@ -1752,7 +1752,7 @@
 			p4d.z = a->gfac * x + a->hfac * y + a->ifac * z + a->zoff;
 			ptarray_set_point4d(pa, i, &p4d);
 
-			LWDEBUGF(3, " POINT %g %g %g => %g %g %g", x, y, x, p4d.x, p4d.y, p4d.z);
+			LWDEBUGF(3, " POINT %g %g %g => %g %g %g", x, y, z, p4d.x, p4d.y, p4d.z);
 		}
 	}
 	else
@@ -1768,7 +1768,7 @@
 			p4d.y = a->dfac * x + a->efac * y + a->yoff;
 			ptarray_set_point4d(pa, i, &p4d);
 
-			LWDEBUGF(3, " POINT %g %g %g => %g %g %g", x, y, x, p4d.x, p4d.y, p4d.z);
+			LWDEBUGF(3, " POINT %g %g => %g %g", x, y, p4d.x, p4d.y);
 		}
 	}
 



More information about the postgis-tickets mailing list