From: Paul Ramsey Date: Fri, 22 Jun 2012 17:54:59 +0000 (+0000) Subject: Fix a currently defined-out function signature mismatch. X-Git-Tag: 2.1.0beta2~862 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b654e6bbc46b8f9a9aeca72f3797670f4246b98;p=postgis Fix a currently defined-out function signature mismatch. git-svn-id: http://svn.osgeo.org/postgis/trunk@9974 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/geometry_estimate.c b/postgis/geometry_estimate.c index 44dafea31..b7030946c 100644 --- a/postgis/geometry_estimate.c +++ b/postgis/geometry_estimate.c @@ -122,9 +122,9 @@ Datum geometry_estimated_extent(PG_FUNCTION_ARGS); * for all PG versions */ PG_FUNCTION_INFO_V1(LWGEOM_gist_joinsel); -Datum geometry_gist_joinsel(PG_FUNCTION_ARGS) +Datum geometry_gist_joinsel_2d(PG_FUNCTION_ARGS) { - POSTGIS_DEBUGF(2, "geometry_gist_joinsel called (returning %f)", + POSTGIS_DEBUGF(2, "geometry_gist_joinsel_2d called (returning %f)", DEFAULT_GEOMETRY_JOINSEL); PG_RETURN_FLOAT8(DEFAULT_GEOMETRY_JOINSEL);