aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2012-01-23 21:05:51 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2012-01-23 21:05:51 -0200
commit291f564485d8968fc7b0d043dda5ff91a7ce604b (patch)
tree4949c3a32f797f1188963006eaafdab504649f26 /lobject.h
parent9f1a8dbdd3ae7ec0b7ff5a916583f02135e21beb (diff)
downloadlua-291f564485d8968fc7b0d043dda5ff91a7ce604b.tar.gz
lua-291f564485d8968fc7b0d043dda5ff91a7ce604b.tar.bz2
lua-291f564485d8968fc7b0d043dda5ff91a7ce604b.zip
field 'reserved' -> 'extra' (may be used for other purposes too)
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lobject.h b/lobject.h
index 3050e4e4..a5ace499 100644
--- a/lobject.h
+++ b/lobject.h
@@ -409,7 +409,7 @@ typedef union TString {
409 L_Umaxalign dummy; /* ensures maximum alignment for strings */ 409 L_Umaxalign dummy; /* ensures maximum alignment for strings */
410 struct { 410 struct {
411 CommonHeader; 411 CommonHeader;
412 lu_byte reserved; 412 lu_byte extra; /* reserved words for strings */
413 unsigned int hash; 413 unsigned int hash;
414 size_t len; /* number of characters in string */ 414 size_t len; /* number of characters in string */
415 } tsv; 415 } tsv;