From ee5edb6b680589805c8fc348f6a7566c2bd8735d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 17 Sep 2015 12:51:05 -0300 Subject: macros 'getaddrstr' and 'getstr' unified (they do the same thing) --- lundump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lundump.c') diff --git a/lundump.c b/lundump.c index 50c9f0fe..469308d7 100644 --- a/lundump.c +++ b/lundump.c @@ -1,5 +1,5 @@ /* -** $Id: lundump.c,v 2.41 2014/11/02 19:19:04 roberto Exp roberto $ +** $Id: lundump.c,v 2.42 2015/09/08 15:41:05 roberto Exp roberto $ ** load precompiled Lua chunks ** See Copyright Notice in lua.h */ @@ -98,7 +98,7 @@ static TString *LoadString (LoadState *S) { } else { /* long string */ TString *ts = luaS_createlngstrobj(S->L, size); - LoadVector(S, getaddrstr(ts), size); /* load directly in final place */ + LoadVector(S, getstr(ts), size); /* load directly in final place */ return ts; } } -- cgit v1.2.3-55-g6feb