From: erg Date: Wed, 20 Aug 2008 21:12:55 +0000 (+0000) Subject: Fix debug code due to change from box to boxf X-Git-Tag: LAST_LIBGRAPH~32^2~3589 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5c01749246c312ae9348e4cd86fc4801b8ab51c5;p=graphviz Fix debug code due to change from box to boxf --- diff --git a/lib/common/htmltable.c b/lib/common/htmltable.c index c3c542404..9ab5aa58a 100644 --- a/lib/common/htmltable.c +++ b/lib/common/htmltable.c @@ -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)