]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
reduce the hashtable size a bit
authorWolfgang Bumiller <blub@speed.at>
Tue, 15 Jan 2013 19:35:30 +0000 (20:35 +0100)
committerWolfgang Bumiller <blub@speed.at>
Tue, 15 Jan 2013 19:35:30 +0000 (20:35 +0100)
parser.c

index ecabe72d39992e660a0713227bcdf54f58c610b2..3bd1073382a5fd006f83c825dfa5dd16c7a9eff2 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -31,7 +31,7 @@
 /* beginning of locals */
 #define PARSER_HT_LOCALS  2
 
-#define PARSER_HT_SIZE    1024
+#define PARSER_HT_SIZE    128
 #define TYPEDEF_HT_SIZE   16
 
 enum parser_pot { POT_PAREN, POT_TERNARY1, POT_TERNARY2 };