From: ellson Date: Thu, 30 Jul 2009 19:13:26 +0000 (+0000) Subject: fix fractional penwidths X-Git-Tag: LAST_LIBGRAPH~32^2~1767 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=86d405286379a571ffda467180c3ed877a199288;p=graphviz fix fractional penwidths --- diff --git a/lib/common/shapes.c b/lib/common/shapes.c index b15ab79f2..688ec5b89 100644 --- a/lib/common/shapes.c +++ b/lib/common/shapes.c @@ -327,7 +327,8 @@ static char **checkStyle(node_t * n, int *flagp) static int stylenode(GVJ_t * job, node_t * n) { char **pstyle, *s; - int istyle, penwidth; + int istyle; + double penwidth; if ((pstyle = checkStyle(n, &istyle))) gvrender_set_style(job, pstyle);