]> granicus.if.org Git - graphviz/commitdiff
Fix debug code due to change from box to boxf
authorerg <devnull@localhost>
Wed, 20 Aug 2008 21:50:29 +0000 (21:50 +0000)
committererg <devnull@localhost>
Wed, 20 Aug 2008 21:50:29 +0000 (21:50 +0000)
lib/fdpgen/dbg.c

index a83076dec56ffd2903016c552ba88d185f19cbd7..94789d0b8eeca4460731e8516fce50bda136ef38 100644 (file)
@@ -52,7 +52,7 @@ void prIndent(void)
 static void dumpBB(graph_t * g)
 {
     boxf bb;
-    box b;
+    boxf b;
 
     bb = BB(g);
     b = GD_bb(g);
@@ -60,7 +60,7 @@ static void dumpBB(graph_t * g)
     fprintf(stderr, "  LL (%f,%f)  UR (%f,%f)\n", bb.LL.x, bb.LL.y,
            bb.UR.x, bb.UR.y);
     prIndent();
-    fprintf(stderr, "  LL (%d,%d)  UR (%d,%d)\n", b.LL.x, b.LL.y,
+    fprintf(stderr, "  LL (%f,%f)  UR (%f,%f)\n", b.LL.x, b.LL.y,
            b.UR.x, b.UR.y);
 }