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... --- lstate.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 6f8e4e6c..37de2372 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 1.108 2002/11/25 17:47:13 roberto Exp roberto $ +** $Id: lstate.h,v 1.109 2003/02/27 11:52:30 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -64,7 +64,7 @@ struct lua_longjmp; /* defined in ldo.c */ typedef struct stringtable { GCObject **hash; - ls_nstr nuse; /* number of elements */ + lu_int32 nuse; /* number of elements */ int size; } stringtable; -- cgit v1.2.3-55-g6feb