Fix debug code due to change from box to boxf
authorerg <devnull@localhost>
Wed, 20 Aug 2008 21:12:55 +0000 (21:12 +0000)
committererg <devnull@localhost>
Wed, 20 Aug 2008 21:12:55 +0000 (21:12 +0000)
lib/common/htmltable.c

index c3c54240494dc40f361df12f3dd52fe6b9bcaa35..9ab5aa58a6103cf2885e441587656c75b0454fe6 100644 (file)
@@ -1595,9 +1595,9 @@ void indent(int i)
        fprintf(stderr, "  ");
 }
 
-void printBox(box b)
+void printBox(boxf b)
 {
-    fprintf(stderr, "(%d,%d)(%d,%d)", b.LL.x, b.LL.y, b.UR.x, b.UR.y);
+    fprintf(stderr, "(%f,%f)(%f,%f)", b.LL.x, b.LL.y, b.UR.x, b.UR.y);
 }
 
 void printImage(htmlimg_t *ip, int ind)