From: Sandro Santilli Date: Mon, 21 Nov 2016 15:24:13 +0000 (+0000) Subject: Fix too many arguments warning introduced with r15236 X-Git-Tag: 2.4.0alpha~209 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45d573e76875d560cd3ae8a5db58e3bc2857d77a;p=postgis Fix too many arguments warning introduced with r15236 git-svn-id: http://svn.osgeo.org/postgis/trunk@15239 b70326c6-7e19-0410-871a-916f4a2858ee --- 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);