From cb4b7028801143b38d50c052cdaaab4bd1b61df1 Mon Sep 17 00:00:00 2001 From: Bborie Park Date: Tue, 3 Apr 2012 18:46:19 +0000 Subject: [PATCH] Fix error message git-svn-id: http://svn.osgeo.org/postgis/trunk@9601 b70326c6-7e19-0410-871a-916f4a2858ee --- raster/rt_pg/rt_pg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raster/rt_pg/rt_pg.c b/raster/rt_pg/rt_pg.c index 72533bc08..7f3b6a7b0 100644 --- a/raster/rt_pg/rt_pg.c +++ b/raster/rt_pg/rt_pg.c @@ -2329,7 +2329,7 @@ Datum RASTER_getPixelPolygon(PG_FUNCTION_ARGS) raster = rt_raster_deserialize(pgraster, FALSE); if (!raster) { - elog(ERROR, "RASTER_getPixelValue: Could not deserialize raster"); + elog(ERROR, "RASTER_getPixelPolygon: Could not deserialize raster"); PG_RETURN_NULL(); } -- 2.50.1