From accd7bc25355be4350db6d117515c672121a67f2 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 21 Nov 1997 17:00:46 -0200 Subject: small modifications (format, small optimizations, etc) --- ltable.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltable.c') diff --git a/ltable.c b/ltable.c index f0adc627..c5c1f714 100644 --- a/ltable.c +++ b/ltable.c @@ -1,5 +1,5 @@ /* -** $Id: ltable.c,v 1.5 1997/10/24 17:17:24 roberto Exp roberto $ +** $Id: ltable.c,v 1.6 1997/11/19 17:29:23 roberto Exp roberto $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ @@ -84,7 +84,7 @@ static Node *hashnodecreate (int nhash) */ static void hashdelete (Hash *t) { - luaM_free (nodevector(t)); + luaM_free(nodevector(t)); luaM_free(t); } -- cgit v1.2.3-55-g6feb