From: erg <devnull@localhost>
Date: Thu, 17 Feb 2005 15:37:16 +0000 (+0000)
Subject: Fix parameter type to use enum rather than raw int.
X-Git-Tag: LAST_LIBGRAPH~32^2~7926
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb7e1d54219f6bc3774cf5b93e1b2dc06ee5b022;p=graphviz

Fix parameter type to use enum rather than raw int.
---

diff --git a/lib/fdpgen/tlayout.h b/lib/fdpgen/tlayout.h
index b0c55995c..96aeeb04a 100644
--- a/lib/fdpgen/tlayout.h
+++ b/lib/fdpgen/tlayout.h
@@ -39,7 +39,7 @@ typedef enum {
 	double Tfact;		/* scale temp from default expression */
 	double K;		/* spring constant; ideal distance */
 	double T0;              /* initial temperature */
-	int smode;              /* seed mode */
+	seedMode smode;         /* seed mode */
 	int tries;              /* overlap removal */
     } fdpParms_t;