From b5b45aa2667893ebf928ff258979fd79b552bddf Mon Sep 17 00:00:00 2001
From: "Emden R. Gansner" <erg@alum.mit.edu>
Date: Mon, 10 Mar 2014 09:49:33 -0400
Subject: [PATCH] Fix missed conversion from int to double.

---
 lib/common/types.h.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 */
-- 
2.40.0