mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Backed out changeset a3a4ed0d34f4 C99 is ok
This commit is contained in:
parent
cd37249852
commit
3bf3935e78
1 changed files with 1 additions and 2 deletions
|
@ -7,12 +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(arg = n_args; arg >= 1; arg--) {
|
||||
for(int arg = n_args; arg >= 1; arg--) {
|
||||
lua_rawseti(L, 1, arg);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue