From 39992f07a794e0b6faeaf8d46411ec615e392115 Mon Sep 17 00:00:00 2001 From: Dave Jones Date: Sun, 28 Apr 2002 04:55:26 -0700 Subject: [PATCH] fix xconfig. We now have so many CONFIG_ options we overflow a buffer in xconfig. Doubling the size should see us until someone either writes a replacement, or can be bothered to make it dynamically allocate. --- scripts/tkparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/tkparse.c') diff --git a/scripts/tkparse.c b/scripts/tkparse.c index 241640f23cf3..ddd1ad7e9a8b 100644 --- a/scripts/tkparse.c +++ b/scripts/tkparse.c @@ -77,7 +77,7 @@ static void syntax_error( const char * msg ) * Find index of a specyfic variable in the symbol table. * Create a new entry if it does not exist yet. */ -#define VARTABLE_SIZE 2048 +#define VARTABLE_SIZE 4096 struct variable vartable[VARTABLE_SIZE]; int max_varnum = 0; -- cgit v1.2.3