wrong comment

This commit is contained in:
Roberto Ierusalimschy 2010-04-30 15:17:24 -03:00
parent 0062db1e06
commit 9a9fe42deb
1 changed files with 2 additions and 2 deletions

4
lmem.c
View File

@ -1,5 +1,5 @@
/*
** $Id: lmem.c,v 1.75 2010/04/02 14:37:41 roberto Exp roberto $
** $Id: lmem.c,v 1.76 2010/04/29 17:33:17 roberto Exp roberto $
** Interface to Memory Manager
** See Copyright Notice in lua.h
*/
@ -95,7 +95,7 @@ void *luaM_realloc_ (lua_State *L, void *block, size_t osize, size_t nsize) {
}
lua_assert((nsize == 0) == (newblock == NULL));
g->totalbytes = (g->totalbytes - realosize) + nsize;
if (!gcstopped(g)) /* new object? */
if (!gcstopped(g))
g->GCdebt += nsize; /* give some credit to garbage collector */
#if defined(TRACEMEM)
{ /* auxiliar patch to monitor garbage collection.