From 075da266e53868ae78dc4eebf8675592d312a67d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 21 Feb 2000 16:33:26 -0200 Subject: [PATCH] there is no need to use shorts... --- lobject.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lobject.h b/lobject.h index 87afb761..a5eb77d7 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.47 2000/02/14 16:51:08 roberto Exp roberto $ +** $Id: lobject.h,v 1.48 2000/02/17 18:30:36 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -163,9 +163,9 @@ typedef struct TProtoFunc { Instruction *code; /* ends with opcode ENDCODE */ int lineDefined; TaggedString *source; - short numparams; - short is_vararg; - short maxstacksize; + int numparams; + int is_vararg; + int maxstacksize; struct LocVar *locvars; /* ends with line = -1 */ } TProtoFunc;