diff options
Diffstat (limited to 'ltable.c')
-rw-r--r-- | ltable.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltable.c,v 2.6 2004/09/27 18:54:45 roberto Exp roberto $ | 2 | ** $Id: ltable.c,v 2.7 2004/10/06 18:34:16 roberto Exp roberto $ |
3 | ** Lua tables (hash) | 3 | ** Lua tables (hash) |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -38,7 +38,7 @@ | |||
38 | ** max size of array part is 2^MAXBITS | 38 | ** max size of array part is 2^MAXBITS |
39 | */ | 39 | */ |
40 | #if LUA_BITSINT > 26 | 40 | #if LUA_BITSINT > 26 |
41 | #define MAXBITS 24 | 41 | #define MAXBITS 26 |
42 | #else | 42 | #else |
43 | #define MAXBITS (LUA_BITSINT-2) | 43 | #define MAXBITS (LUA_BITSINT-2) |
44 | #endif | 44 | #endif |