aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index ba425fed..3ab75ad5 100644
--- a/lobject.h
+++ b/lobject.h
@@ -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 {
438typedef union TKey { 438typedef 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;