about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2017-02-15 04:16:24 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2017-02-15 04:16:24 +0000
commit00a5d8595f2d3cbd9a89707a9a0662c8b6f44b00 (patch)
tree98fe3b825ff8b11dd3a5e7ab47e5443dcdef4244
parent4ae8a9ebce928dae98af531aa7083a1404974e5e (diff)
downloadnetpbm-mirror-00a5d8595f2d3cbd9a89707a9a0662c8b6f44b00.tar.gz
netpbm-mirror-00a5d8595f2d3cbd9a89707a9a0662c8b6f44b00.tar.xz
netpbm-mirror-00a5d8595f2d3cbd9a89707a9a0662c8b6f44b00.zip
Remove debug trace
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2894 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--doc/HISTORY3
-rw-r--r--lib/path.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/doc/HISTORY b/doc/HISTORY
index 9ec0d648..bdc00cc6 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -15,6 +15,9 @@ not yet  BJH  Release 10.78.00
 
               pnmcrop: Add -closeness
 
+              libnetpbm: ppmd_fill_path: remove debug trace.  Always broken
+              (ppmd_fill_path was new in Netpbm 10.34 (June 2006).
+
               Build: don't create pointer man pages anymore.  These were
               classic man pages, created by 'make package', one for each
               program, that just told the user to get the manual from the web
diff --git a/lib/path.c b/lib/path.c
index 59deb0d2..46a7d35f 100644
--- a/lib/path.c
+++ b/lib/path.c
@@ -269,7 +269,6 @@ pushStack(fillStack * const stackP,
     assert(stackP->topOfStack < stackP->stackSize);
 
     stackP->stack[stackP->topOfStack++] = newPoint;
-pm_message("pushed (%u, %u) at %u", newPoint.x, newPoint.y, stackP->topOfStack-1);
 }
 
 
@@ -350,7 +349,6 @@ fillPoint(fillStack * const stackP,
    Fill the image in 'pixels' with color 'color' and update *stackP as
    required.
 -----------------------------------------------------------------------------*/
-pm_message("filling point (%u, %u)", point.x, point.y);
     if (inStackDirection(stackP, point)) {
         pushStack(stackP, point);
         pixels[point.y][point.x] = color;