]> granicus.if.org Git - postgis/commitdiff
removed accidental commit of some debug testing
authorBborie Park <bkpark at ucdavis.edu>
Thu, 30 Jun 2011 17:16:02 +0000 (17:16 +0000)
committerBborie Park <bkpark at ucdavis.edu>
Thu, 30 Jun 2011 17:16:02 +0000 (17:16 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@7528 b70326c6-7e19-0410-871a-916f4a2858ee

raster/rt_core/rt_api.c

index a746cdf3e8b88321e5289e37a7cd4c08f1afd9c0..6e00eed2218790dfe8167d613c5e9c6e5ad69c37 100644 (file)
@@ -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