From 6b654e6bbc46b8f9a9aeca72f3797670f4246b98 Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Fri, 22 Jun 2012 17:54:59 +0000 Subject: [PATCH] Fix a currently defined-out function signature mismatch. git-svn-id: http://svn.osgeo.org/postgis/trunk@9974 b70326c6-7e19-0410-871a-916f4a2858ee --- postgis/geometry_estimate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.50.1