[mapserver-commits] r10794 - trunk/mapserver

svn at osgeo.org svn at osgeo.org
Fri Dec 10 01:17:55 EST 2010


Author: sdlime
Date: 2010-12-09 22:17:55 -0800 (Thu, 09 Dec 2010)
New Revision: 10794

Modified:
   trunk/mapserver/mapgeos.c
Log:
Trivial error message updates...

Modified: trunk/mapserver/mapgeos.c
===================================================================
--- trunk/mapserver/mapgeos.c	2010-12-10 06:16:28 UTC (rev 10793)
+++ trunk/mapserver/mapgeos.c	2010-12-10 06:17:55 UTC (rev 10794)
@@ -684,7 +684,7 @@
   g2 = GEOSSimplify(g1, tolerance);
   return msGEOSGeometry2Shape(g2);
 #else
-  msSetError(MS_GEOSERR, "GEOS Simplify support is not available.", "msGEOSTopologyPreservingSimplifier()");
+  msSetError(MS_GEOSERR, "GEOS Simplify support is not available.", "msGEOSSimplify()");
   return NULL;
 #endif
 }
@@ -706,7 +706,7 @@
   g2 = GEOSTopologyPreserveSimplify(g1, tolerance);
   return msGEOSGeometry2Shape(g2);
 #else
-  msSetError(MS_GEOSERR, "GEOS Simplify support is not available.", "msGEOSTopologyPreservingSimplifier()");
+  msSetError(MS_GEOSERR, "GEOS Simplify support is not available.", "msGEOSTopologyPreservingSimplify()");
   return NULL;
 #endif
 }



More information about the mapserver-commits mailing list