aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-04-28 16:26:16 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-04-28 16:26:16 -0300
commit572a69df78b2636642e9c520ebc8c1d2efa16afe (patch)
tree0e1e6f042e63f1d0e8aabc692692f2fcc42efb75 /lobject.h
parent943c82b37622bd2321d4fbb361d99f4495ceed2f (diff)
downloadlua-572a69df78b2636642e9c520ebc8c1d2efa16afe.tar.gz
lua-572a69df78b2636642e9c520ebc8c1d2efa16afe.tar.bz2
lua-572a69df78b2636642e9c520ebc8c1d2efa16afe.zip
Lua does not need all those different types...
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 1263f583..7488e2fe 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.158 2003/02/18 16:02:56 roberto Exp roberto $ 2** $Id: lobject.h,v 1.159 2003/03/18 12:50:04 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*/
@@ -181,7 +181,7 @@ typedef union TString {
181 struct { 181 struct {
182 CommonHeader; 182 CommonHeader;
183 lu_byte reserved; 183 lu_byte reserved;
184 lu_hash hash; 184 unsigned int hash;
185 size_t len; 185 size_t len;
186 } tsv; 186 } tsv;
187} TString; 187} TString;