Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion zklua.c
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ static int _zklua_build_string_vector(lua_State *L, const struct String_vector *
if (sv != NULL) {
for (i = 0; i < sv->count; ++i) {
lua_pushstring(L, sv->data[i]);
lua_rawseti(L, -2, i);
lua_rawseti(L, -2, i+1);
}
}
return 0;
Expand Down