diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-01-28 13:13:26 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-01-28 13:13:26 -0200 |
commit | e2b15aa21d2f31ccc93e35f50928e26a8d9c84ce (patch) | |
tree | 0c8fe009fffa187be71ea3e268daf1a6e29d6d9a /lcode.c | |
parent | 89110986d7a9e81960261ae682780d5fd06dc4ac (diff) | |
download | lua-e2b15aa21d2f31ccc93e35f50928e26a8d9c84ce.tar.gz lua-e2b15aa21d2f31ccc93e35f50928e26a8d9c84ce.tar.bz2 lua-e2b15aa21d2f31ccc93e35f50928e26a8d9c84ce.zip |
janitor work on casts
Diffstat (limited to '')
-rw-r--r-- | lcode.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lcode.c,v 2.150 2018/01/18 16:24:31 roberto Exp roberto $ | 2 | ** $Id: lcode.c,v 2.151 2018/01/27 16:56:33 roberto Exp roberto $ |
3 | ** Code generator for Lua | 3 | ** Code generator for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -545,7 +545,7 @@ int luaK_stringK (FuncState *fs, TString *s) { | |||
545 | */ | 545 | */ |
546 | static int luaK_intK (FuncState *fs, lua_Integer n) { | 546 | static int luaK_intK (FuncState *fs, lua_Integer n) { |
547 | TValue k, o; | 547 | TValue k, o; |
548 | setpvalue(&k, cast(void*, cast(size_t, n))); | 548 | setpvalue(&k, cast_voidp(cast_sizet(n))); |
549 | setivalue(&o, n); | 549 | setivalue(&o, n); |
550 | return addk(fs, &k, &o); | 550 | return addk(fs, &k, &o); |
551 | } | 551 | } |