From b3a9cd0880de9ce30f246f7d2f769330a6ecc36c Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Thu, 25 Feb 2016 16:02:29 +0000 Subject: [PATCH] Avoid signature collision in altered callback function git-svn-id: http://svn.osgeo.org/postgis/trunk@14697 b70326c6-7e19-0410-871a-916f4a2858ee --- raster/rt_pg/rtpostgis.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/raster/rt_pg/rtpostgis.c b/raster/rt_pg/rtpostgis.c index 3a679446b..f222dd1ff 100644 --- a/raster/rt_pg/rtpostgis.c +++ b/raster/rt_pg/rtpostgis.c @@ -180,7 +180,7 @@ rtpg_assignHookGDALDataPath(const char *newpath, void *extra) { /* postgis.gdal_enabled_drivers */ static void -rtpg_assignHookGDALEnabledDrivers(const char *enabled_drivers, void *extra) { +rtpg_assignHookGDALEnabledDrivers23(const char *enabled_drivers, void *extra) { int enable_all = 0; int disable_all = 0; @@ -430,7 +430,7 @@ _PG_init(void) { #if POSTGIS_PGSQL_VERSION >= 91 NULL, /* GucStringCheckHook check_hook */ #endif - rtpg_assignHookGDALEnabledDrivers, /* GucStringAssignHook assign_hook */ + rtpg_assignHookGDALEnabledDrivers23, /* GucStringAssignHook assign_hook */ NULL /* GucShowHook show_hook */ ); } -- 2.40.0