From 8b3033091e646a7811bcc6655634a5d7257eb699 Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Wed, 15 Jun 2016 16:31:02 +0000 Subject: [PATCH] Fix typos in debug strings git-svn-id: http://svn.osgeo.org/postgis/trunk@14953 b70326c6-7e19-0410-871a-916f4a2858ee --- liblwgeom/ptarray.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/liblwgeom/ptarray.c b/liblwgeom/ptarray.c index 69746f6aa..0809ec58d 100644 --- a/liblwgeom/ptarray.c +++ b/liblwgeom/ptarray.c @@ -1752,7 +1752,7 @@ ptarray_affine(POINTARRAY *pa, const AFFINE *a) 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 @@ ptarray_affine(POINTARRAY *pa, const AFFINE *a) 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); } } -- 2.40.0