aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index 8097853c..13fe3423 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 2.100 2014/07/29 16:22:24 roberto Exp roberto $ 2** $Id: lobject.h,v 2.101 2014/07/30 14:00:14 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*/
@@ -487,7 +487,7 @@ typedef struct Table {
487 CommonHeader; 487 CommonHeader;
488 lu_byte flags; /* 1<<p means tagmethod(p) is not present */ 488 lu_byte flags; /* 1<<p means tagmethod(p) is not present */
489 lu_byte lsizenode; /* log2 of size of `node' array */ 489 lu_byte lsizenode; /* log2 of size of `node' array */
490 int sizearray; /* size of `array' array */ 490 unsigned int sizearray; /* size of `array' array */
491 TValue *array; /* array part */ 491 TValue *array; /* array part */
492 Node *node; 492 Node *node;
493 Node *lastfree; /* any free position is before this position */ 493 Node *lastfree; /* any free position is before this position */