From 45d573e76875d560cd3ae8a5db58e3bc2857d77a Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Mon, 21 Nov 2016 15:24:13 +0000 Subject: [PATCH] Fix too many arguments warning introduced with r15236 git-svn-id: http://svn.osgeo.org/postgis/trunk@15239 b70326c6-7e19-0410-871a-916f4a2858ee --- topology/postgis_topology.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topology/postgis_topology.c b/topology/postgis_topology.c index 8e628c893..7665c6149 100644 --- a/topology/postgis_topology.c +++ b/topology/postgis_topology.c @@ -2736,7 +2736,7 @@ cb_getEdgeWithinBox2D ( const LWT_BE_TOPOLOGY* topo, const GBOX* box, 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); -- 2.40.0