changeset 10582:d46910228a6b

min/max float->double
author arpi
date Tue, 12 Aug 2003 18:00:08 +0000
parents 4ebff25d9a05
children a056b946e8df
files cfgparser.h m_config.h
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/cfgparser.h	Tue Aug 12 13:25:52 2003 +0000
+++ b/cfgparser.h	Tue Aug 12 18:00:08 2003 +0000
@@ -57,7 +57,7 @@
 	void *p;
 	unsigned int type;
 	unsigned int flags;
-	float min,max;
+	double min,max;
   /* Use this field when your need to do something before a new value is
      assigned to your option */
 	cfg_default_func_t default_func;
--- a/m_config.h	Tue Aug 12 13:25:52 2003 +0000
+++ b/m_config.h	Tue Aug 12 18:00:08 2003 +0000
@@ -71,7 +71,7 @@
   void *p; 
   struct m_option_type* type;
   unsigned int flags;
-  float min,max;
+  double min,max;
   void* priv;
 };