diff options
Diffstat (limited to 'lvm.c')
-rw-r--r-- | lvm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.c,v 2.251 2015/09/08 15:41:05 roberto Exp roberto $ | 2 | ** $Id: lvm.c,v 2.252 2015/09/09 13:44:07 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -487,7 +487,7 @@ void luaV_concat (lua_State *L, int total) { | |||
487 | } | 487 | } |
488 | else { /* long string; copy strings directly to final result */ | 488 | else { /* long string; copy strings directly to final result */ |
489 | ts = luaS_createlngstrobj(L, tl); | 489 | ts = luaS_createlngstrobj(L, tl); |
490 | copy2buff(top, n, getaddrstr(ts)); | 490 | copy2buff(top, n, getstr(ts)); |
491 | } | 491 | } |
492 | setsvalue2s(L, top - n, ts); /* create result */ | 492 | setsvalue2s(L, top - n, ts); /* create result */ |
493 | } | 493 | } |