From: ellson Date: Tue, 18 Oct 2005 21:06:29 +0000 (+0000) Subject: Fix bug 789. X-Git-Tag: LAST_LIBGRAPH~32^2~7091 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7d85f1feed259ec5d8ffbc3ee882942ae5f41ab9;p=graphviz Fix bug 789. --- diff --git a/lib/common/output.c b/lib/common/output.c index 9d99cfba1..18b51dfbd 100644 --- a/lib/common/output.c +++ b/lib/common/output.c @@ -181,8 +181,8 @@ static void rec_attach_bb(graph_t * g) char buf[32]; point pt; - sprintf(buf, "%d,%d,%d,%d", GD_bb(g).LL.x, YDIR(GD_bb(g).LL.y), - GD_bb(g).UR.x, YDIR(GD_bb(g).UR.y)); + sprintf(buf, "%d,%d,%d,%d", GD_bb(g).LL.x, GD_bb(g).LL.y, + GD_bb(g).UR.x, GD_bb(g).UR.y); agset(g, "bb", buf); if (GD_label(g) && GD_label(g)->text[0]) { pt = GD_label(g)->p;