From 17cae6f487f0a1bdaff31e729de68d64a49fea09 Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Thu, 17 Mar 2011 19:27:39 +0000 Subject: [PATCH] Fix mis-named debugging global git-svn-id: http://svn.osgeo.org/postgis/trunk@6918 b70326c6-7e19-0410-871a-916f4a2858ee --- postgis/gserialized_gist_2d.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postgis/gserialized_gist_2d.c b/postgis/gserialized_gist_2d.c index 965c6edf5..519c7c31e 100644 --- a/postgis/gserialized_gist_2d.c +++ b/postgis/gserialized_gist_2d.c @@ -619,7 +619,7 @@ static inline bool gserialized_gist_consistent_leaf_2d(BOX2DF *key, BOX2DF *quer bool retval; POSTGIS_DEBUGF(4, "[GIST] leaf consistent, strategy [%d], count[%i]", - strategy, geog_counter_leaf++); + strategy, g2d_counter_leaf++); switch (strategy) { @@ -652,7 +652,7 @@ static inline bool gserialized_gist_consistent_internal_2d(BOX2DF *key, BOX2DF * bool retval; POSTGIS_DEBUGF(4, "[GIST] internal consistent, strategy [%d], count[%i], query[%s], key[%s]", - strategy, geog_counter_internal++, box2df_to_string(query), box2df_to_string(key) ); + strategy, g2d_counter_internal++, box2df_to_string(query), box2df_to_string(key) ); switch (strategy) { -- 2.50.1