aboutsummaryrefslogtreecommitdiff
path: root/lundump.c
diff options
context:
space:
mode:
Diffstat (limited to 'lundump.c')
-rw-r--r--lundump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lundump.c b/lundump.c
index 50c9f0fe..469308d7 100644
--- a/lundump.c
+++ b/lundump.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lundump.c,v 2.41 2014/11/02 19:19:04 roberto Exp roberto $ 2** $Id: lundump.c,v 2.42 2015/09/08 15:41:05 roberto Exp roberto $
3** load precompiled Lua chunks 3** load precompiled Lua chunks
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -98,7 +98,7 @@ static TString *LoadString (LoadState *S) {
98 } 98 }
99 else { /* long string */ 99 else { /* long string */
100 TString *ts = luaS_createlngstrobj(S->L, size); 100 TString *ts = luaS_createlngstrobj(S->L, size);
101 LoadVector(S, getaddrstr(ts), size); /* load directly in final place */ 101 LoadVector(S, getstr(ts), size); /* load directly in final place */
102 return ts; 102 return ts;
103 } 103 }
104} 104}