From acdb0b741e31adebfa4f608f8bf23e65fa68d741 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 27 Dec 1999 15:33:22 -0200 Subject: comments. --- lmem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lmem.c') diff --git a/lmem.c b/lmem.c index 47c45156..349bf751 100644 --- a/lmem.c +++ b/lmem.c @@ -1,5 +1,5 @@ /* -** $Id: lmem.c,v 1.21 1999/11/29 16:38:48 roberto Exp roberto $ +** $Id: lmem.c,v 1.22 1999/12/14 18:31:20 roberto Exp roberto $ ** Interface to Memory Manager ** See Copyright Notice in lua.h */ @@ -49,7 +49,7 @@ void *luaM_realloc (lua_State *L, void *block, unsigned long size) { if (s != size) lua_error(L, "memory allocation error: block too big"); if (size == 0) { - free(block); /* block may be NULL, that is OK for free */ + free(block); /* block may be NULL; that is OK for free */ return NULL; } block = realloc(block, s); -- cgit v1.2.3-55-g6feb