[postgis-tickets] r15053 - get rid of undeclared variable in POSTGIS_DEBUGF

Regina Obe lr at pcorp.us
Sat Sep 3 22:34:04 PDT 2016


Author: robe
Date: 2016-09-03 22:34:04 -0700 (Sat, 03 Sep 2016)
New Revision: 15053

Modified:
   trunk/postgis/gserialized_gist_2d.c
Log:
get rid of undeclared variable in POSTGIS_DEBUGF
compile with configure --enable-debug is broken
closes #3618

Modified: trunk/postgis/gserialized_gist_2d.c
===================================================================
--- trunk/postgis/gserialized_gist_2d.c	2016-09-03 18:09:26 UTC (rev 15052)
+++ trunk/postgis/gserialized_gist_2d.c	2016-09-04 05:34:04 UTC (rev 15053)
@@ -641,7 +641,7 @@
 
 	if ( predicate(br1, br2) )
 	{
-		POSTGIS_DEBUGF(3, "got boxes %s and %s", br1 ? box2df_to_string(&b1) : "(null)", br2 ? box2df_to_string(&b2) : "(null)");
+		POSTGIS_DEBUGF(3, "got boxes %s", br2 ? box2df_to_string(&b2) : "(null)");
 		return LW_TRUE;
 	}
 	return LW_FALSE;



More information about the postgis-tickets mailing list