mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.table: Move loop variable to top of function for C89 compatibility
This commit is contained in:
parent
6cff8fa474
commit
2c74295bfa
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue