From: Paul Ramsey Date: Thu, 17 Mar 2011 19:27:39 +0000 (+0000) Subject: Fix mis-named debugging global X-Git-Tag: 2.0.0alpha1~1884 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17cae6f487f0a1bdaff31e729de68d64a49fea09;p=postgis Fix mis-named debugging global git-svn-id: http://svn.osgeo.org/postgis/trunk@6918 b70326c6-7e19-0410-871a-916f4a2858ee --- 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) {