From 565e6d74e1440b1500d0ba0d3757307de0a38b9e Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 19 Sep 2002 10:03:53 -0300 Subject: state's buffer is used only for chars --- lstate.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 5f592a9e..618685c1 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 1.94 2002/08/12 17:23:12 roberto Exp roberto $ +** $Id: lstate.h,v 1.95 2002/08/30 19:09:21 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -124,7 +124,7 @@ typedef struct global_State { GCObject *rootgc; /* list of (almost) all collectable objects */ GCObject *rootudata; /* (separated) list of all userdata */ GCObject *tmudata; /* list of userdata to be GC */ - void *Mbuffer; /* global buffer */ + char *Mbuffer; /* global buffer */ size_t Mbuffsize; /* size of Mbuffer */ lu_mem GCthreshold; lu_mem nblocks; /* number of `bytes' currently allocated */ -- cgit v1.2.3-55-g6feb