From dfd7ce74cf040dba710657963db0144201823670 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 23 Feb 2001 17:32:16 -0300 Subject: buffer should be void *, as char now is not that neutral... --- lstate.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index a6f0e062..757d46c3 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 1.51 2001/02/20 18:15:33 roberto Exp roberto $ +** $Id: lstate.h,v 1.52 2001/02/23 17:17:25 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -64,7 +64,7 @@ typedef struct stringtable { ** `global state', shared by all threads of this state */ typedef struct global_State { - l_char *Mbuffer; /* global buffer */ + void *Mbuffer; /* global buffer */ size_t Mbuffsize; /* size of Mbuffer */ Proto *rootproto; /* list of all prototypes */ Closure *rootcl; /* list of all closures */ -- cgit v1.2.3-55-g6feb