util.table: Move loop variable to top of function for C89 compatibility

This commit is contained in:
Kim Alvefur 2016-08-07 20:49:50 +02:00
parent 6cff8fa474
commit 2c74295bfa

View file

@ -7,10 +7,11 @@ static int Lcreate_table(lua_State* L) {
}
static int Lpack(lua_State* L) {
int arg;
unsigned int n_args = lua_gettop(L);
lua_createtable(L, n_args, 1);
lua_insert(L, 1);
for(int arg = n_args; arg >= 1; arg--) {
for(arg = n_args; arg >= 1; arg--) {
lua_rawseti(L, 1, arg);
}
lua_pushinteger(L, n_args);