From 572a69df78b2636642e9c520ebc8c1d2efa16afe Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 28 Apr 2003 16:26:16 -0300 Subject: Lua does not need all those different types... --- lobject.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index 1263f583..7488e2fe 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.158 2003/02/18 16:02:56 roberto Exp roberto $ +** $Id: lobject.h,v 1.159 2003/03/18 12:50:04 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -181,7 +181,7 @@ typedef union TString { struct { CommonHeader; lu_byte reserved; - lu_hash hash; + unsigned int hash; size_t len; } tsv; } TString; -- cgit v1.2.3-55-g6feb