[postgis-tickets] r15239 - Fix too many arguments warning introduced with r15236

Sandro Santilli strk at kbt.io
Mon Nov 21 07:24:13 PST 2016


Author: strk
Date: 2016-11-21 07:24:13 -0800 (Mon, 21 Nov 2016)
New Revision: 15239

Modified:
   trunk/topology/postgis_topology.c
Log:
Fix too many arguments warning introduced with r15236

Modified: trunk/topology/postgis_topology.c
===================================================================
--- trunk/topology/postgis_topology.c	2016-11-21 15:03:33 UTC (rev 15238)
+++ trunk/topology/postgis_topology.c	2016-11-21 15:24:13 UTC (rev 15239)
@@ -2736,7 +2736,7 @@
     appendStringInfoString(sql, "SELECT ");
     addEdgeFields(sql, fields, 0);
   }
-  appendStringInfo(sql, " FROM \"%s\".edge", topo->name, hexbox);
+  appendStringInfo(sql, " FROM \"%s\".edge", topo->name);
 
   if ( box ) {
     hexbox = _box2d_to_hexwkb(box, topo->srid);



More information about the postgis-tickets mailing list