From dd906264f7ec3f9eeedbf7c6eaee154a2fc4cb6d Mon Sep 17 00:00:00 2001 From: Bborie Park Date: Thu, 30 Jun 2011 17:16:02 +0000 Subject: [PATCH] removed accidental commit of some debug testing git-svn-id: http://svn.osgeo.org/postgis/trunk@7528 b70326c6-7e19-0410-871a-916f4a2858ee --- raster/rt_core/rt_api.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/raster/rt_core/rt_api.c b/raster/rt_core/rt_api.c index a746cdf3e..6e00eed22 100644 --- a/raster/rt_core/rt_api.c +++ b/raster/rt_core/rt_api.c @@ -4746,7 +4746,6 @@ rt_raster_serialize(rt_raster raster) { /* Serialize bands now */ for (i = 0; i < raster->numBands; ++i) { rt_band band = raster->bands[i]; - RASTER_DEBUGF(3, "band %d at %p", i, raster->bands[i]); assert(NULL != band); rt_pixtype pixtype = band->pixtype; @@ -4776,11 +4775,9 @@ rt_raster_serialize(rt_raster raster) { ptr += 1; /* Add padding (if needed) */ - RASTER_DEBUGF(3, "modulus: %d", (((uintptr_t) ptr) % pixbytes)); if (pixbytes > 1) { memset(ptr, '\0', pixbytes - 1); ptr += pixbytes - 1; - RASTER_DEBUG(3, "added padding"); } #if POSTGIS_DEBUG_LEVEL > 2 -- 2.50.1