summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-10-28 14:59:32 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-10-28 14:59:32 -0600
commit3e5f4e594f86b5617dcbea5eeefa73ec314c2a3a (patch)
tree4c19dad3ce70c84d91b5e896c052a2b39472757f
parent90006bd6a46af8e853f5a646aec3e043e241a387 (diff)
downloadnuttx-3e5f4e594f86b5617dcbea5eeefa73ec314c2a3a.tar.gz
nuttx-3e5f4e594f86b5617dcbea5eeefa73ec314c2a3a.tar.bz2
nuttx-3e5f4e594f86b5617dcbea5eeefa73ec314c2a3a.zip
Need to increase the size of an array in tools/kconfig2html.c
-rw-r--r--nuttx/tools/kconfig2html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/tools/kconfig2html.c b/nuttx/tools/kconfig2html.c
index 742e1989c..b7deacf1f 100644
--- a/nuttx/tools/kconfig2html.c
+++ b/nuttx/tools/kconfig2html.c
@@ -59,7 +59,7 @@
#define MAX_DEPENDENCIES 100
#define MAX_LEVELS 100
#define MAX_SELECT 16
-#define MAX_DEFAULTS 80
+#define MAX_DEFAULTS 128
#define TAB_SIZE 4
#define VAR_SIZE 80
#define HTML_VAR_SIZE (2*VAR_SIZE + 64)