From: Emden R. Gansner Date: Wed, 2 Oct 2013 20:34:47 +0000 (-0400) Subject: Fix bug in parsing rectangles X-Git-Tag: LAST_LIBGRAPH~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d55bb74adf5ae0f9379aaf6fa63b0ba9c7ac7544;p=graphviz Fix bug in parsing rectangles --- diff --git a/lib/xdot/xdot.c b/lib/xdot/xdot.c index f7f7a5f10..66604dcca 100755 --- a/lib/xdot/xdot.c +++ b/lib/xdot/xdot.c @@ -158,7 +158,7 @@ static char *parseRect(char *s, xdot_rect * rp) else s = endp; - rp->y = strtod (s, &endp); + rp->h = strtod (s, &endp); if (s == endp) return 0; else