more precise type for argument to 'aux_upvalue'

This commit is contained in:
Roberto Ierusalimschy 2014-07-21 13:02:57 -03:00
parent 17ee57f8e0
commit c697aa30bc
1 changed files with 4 additions and 4 deletions

8
lapi.c
View File

@ -1,5 +1,5 @@
/* /*
** $Id: lapi.c,v 2.228 2014/07/18 14:46:47 roberto Exp roberto $ ** $Id: lapi.c,v 2.229 2014/07/19 15:09:37 roberto Exp roberto $
** Lua API ** Lua API
** See Copyright Notice in lua.h ** See Copyright Notice in lua.h
*/ */
@ -1154,13 +1154,13 @@ LUA_API void *lua_newuserdata (lua_State *L, size_t size) {
static const char *aux_upvalue (StkId fi, int n, TValue **val, static const char *aux_upvalue (StkId fi, int n, TValue **val,
GCObject **owner, UpVal **uv) { CClosure **owner, UpVal **uv) {
switch (ttype(fi)) { switch (ttype(fi)) {
case LUA_TCCL: { /* C closure */ case LUA_TCCL: { /* C closure */
CClosure *f = clCvalue(fi); CClosure *f = clCvalue(fi);
if (!(1 <= n && n <= f->nupvalues)) return NULL; if (!(1 <= n && n <= f->nupvalues)) return NULL;
*val = &f->upvalue[n-1]; *val = &f->upvalue[n-1];
if (owner) *owner = obj2gco(f); if (owner) *owner = f;
return ""; return "";
} }
case LUA_TLCL: { /* Lua closure */ case LUA_TLCL: { /* Lua closure */
@ -1195,7 +1195,7 @@ LUA_API const char *lua_getupvalue (lua_State *L, int funcindex, int n) {
LUA_API const char *lua_setupvalue (lua_State *L, int funcindex, int n) { LUA_API const char *lua_setupvalue (lua_State *L, int funcindex, int n) {
const char *name; const char *name;
TValue *val = NULL; /* to avoid warnings */ TValue *val = NULL; /* to avoid warnings */
GCObject *owner = NULL; CClosure *owner = NULL;
UpVal *uv = NULL; UpVal *uv = NULL;
StkId fi; StkId fi;
lua_lock(L); lua_lock(L);