]> granicus.if.org Git - postgis/commitdiff
Fix debug print
authorSandro Santilli <strk@keybit.net>
Fri, 18 Dec 2015 16:32:02 +0000 (16:32 +0000)
committerSandro Santilli <strk@keybit.net>
Fri, 18 Dec 2015 16:32:02 +0000 (16:32 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@14504 b70326c6-7e19-0410-871a-916f4a2858ee

liblwgeom/lwgeom_topo.c

index 426920e4e119741d6e69b3ecd57e75d98886c752..752c543e794bac031a8a558efd92a2a84acffb23 100644 (file)
@@ -3458,8 +3458,8 @@ lwt_ChangeEdgeGeom(LWT_TOPOLOGY* topo, LWT_ELEMID edge_id, LWLINE *geom)
                                   isclosed ? &span_pre : NULL, edge_id );
 
   LWDEBUGF(1, "edges adjacent to old edge are %" LWTFMT_ELEMID
-              " and % (first point), %" LWTFMT_ELEMID
-              " and % (last point)" LWTFMT_ELEMID,
+              " and %" LWTFMT_ELEMID " (first point), %" LWTFMT_ELEMID
+              " and %" LWTFMT_ELEMID " (last point)",
               span_pre.nextCW, span_pre.nextCCW,
               epan_pre.nextCW, epan_pre.nextCCW);
 
@@ -3496,9 +3496,8 @@ lwt_ChangeEdgeGeom(LWT_TOPOLOGY* topo, LWT_ELEMID edge_id, LWLINE *geom)
                           isclosed ? &span_post : NULL, edge_id );
 
   LWDEBUGF(1, "edges adjacent to new edge are %" LWTFMT_ELEMID
-              " and %" LWTFMT_ELEMID
-              " (first point), %" LWTFMT_ELEMID
-              " and % (last point)" LWTFMT_ELEMID,
+              " and %" LWTFMT_ELEMID " (first point), %" LWTFMT_ELEMID
+              " and %" LWTFMT_ELEMID " (last point)",
               span_pre.nextCW, span_pre.nextCCW,
               epan_pre.nextCW, epan_pre.nextCCW);