From: Paul Ramsey Date: Thu, 2 Oct 2008 15:56:57 +0000 (+0000) Subject: Fix log message to refer to correct function name X-Git-Tag: 1.4.0b1~670 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d6e358b759b378a051b7ff0e555f9c73b231d021;p=postgis Fix log message to refer to correct function name git-svn-id: http://svn.osgeo.org/postgis/trunk@3045 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/lwgeom/lwgeom_rtree.c b/lwgeom/lwgeom_rtree.c index a9f863f73..5ee8b8720 100644 --- a/lwgeom/lwgeom_rtree.c +++ b/lwgeom/lwgeom_rtree.c @@ -217,7 +217,7 @@ void freeTree(RTREE_NODE *root) void clearCache(RTREE_POLY_CACHE *cache) { int i; - LWDEBUGF(2, "freeCache called for %p", cache); + LWDEBUGF(2, "clearCache called for %p", cache); for(i = 0; i < cache->ringCount; i++) { freeTree(cache->ringIndices[i]);