]> granicus.if.org Git - postgis/commitdiff
Fix mis-named debugging global
authorPaul Ramsey <pramsey@cleverelephant.ca>
Thu, 17 Mar 2011 19:27:39 +0000 (19:27 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Thu, 17 Mar 2011 19:27:39 +0000 (19:27 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@6918 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/gserialized_gist_2d.c

index 965c6edf52fe2f942bd8e52a32b3fc42dcca0afe..519c7c31ef72fb9cd8271ca3d112e5f11756b51a 100644 (file)
@@ -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)
        {