From: Emden R. Gansner Date: Mon, 10 Mar 2014 13:49:33 +0000 (-0400) Subject: Fix missed conversion from int to double. X-Git-Tag: 2.38.0~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b5b45aa2667893ebf928ff258979fd79b552bddf;p=graphviz Fix missed conversion from int to double. --- diff --git a/lib/common/types.h.in b/lib/common/types.h.in index 6f797e04d..7c10a4926 100644 --- a/lib/common/types.h.in +++ b/lib/common/types.h.in @@ -430,7 +430,7 @@ typedef enum {NATIVEFONTS,PSFONTS,SVGFONTS} fontname_kind; /* for placing nodes */ int rank, order; /* initially, order = 1 for ordered edges */ - int mval; + double mval; elist save_in, save_out; /* for network-simplex */