diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.78 2013/05/14 15:59:04 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.79 2013/08/07 12:18:11 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -438,7 +438,7 @@ typedef union Closure { | |||
438 | typedef union TKey { | 438 | typedef union TKey { |
439 | struct { | 439 | struct { |
440 | TValuefields; | 440 | TValuefields; |
441 | struct Node *next; /* for chaining */ | 441 | int next; /* for chaining (offset for next node) */ |
442 | } nk; | 442 | } nk; |
443 | TValue tvk; | 443 | TValue tvk; |
444 | } TKey; | 444 | } TKey; |