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 1.58 2000/03/30 20:55:50 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.59 2000/03/31 16:28:45 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 | */ |
@@ -110,7 +110,7 @@ typedef struct TString { | |||
110 | unsigned long hash; | 110 | unsigned long hash; |
111 | int constindex; /* hint to reuse constants (= -1 if this is a userdata) */ | 111 | int constindex; /* hint to reuse constants (= -1 if this is a userdata) */ |
112 | unsigned char marked; | 112 | unsigned char marked; |
113 | char str[1]; /* \0 byte already reserved */ | 113 | char str[1]; /* variable length string!! must be the last field! */ |
114 | } TString; | 114 | } TString; |
115 | 115 | ||
116 | 116 | ||