Changes made to Configfile.h static const int MAXCONFIG = 100; static const int MAXLEN_KEY = 100;

Dependents:   Weather_Station

Fork of ConfigFile by Shinichiro Nakamura

Revision:
7:c966b18d8d67
Parent:
6:f6ceafabe9f8
--- a/ConfigFile.h	Wed Sep 15 13:49:15 2010 +0000
+++ b/ConfigFile.h	Mon May 11 15:21:06 2015 +0000
@@ -109,8 +109,8 @@
         char *value;
     } config_t;
     config_t **configlist;
-    static const int MAXCONFIG = 64;
-    static const int MAXLEN_KEY = 64;
+    static const int MAXCONFIG = 100;
+    static const int MAXLEN_KEY = 100;
     static const int MAXLEN_VALUE = 128;
     static const char SEPARATOR = '=';