diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2025-01-14 16:24:46 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2025-01-14 16:24:46 -0300 |
commit | 3cdd49c94a8feed94853ba3a6adaa556fb34fd8d (patch) | |
tree | 1f552c966d1fb5f5c23e956e6d98679f02a558b3 /lcode.c | |
parent | 10e931da82268a9d190c17a9bdb9b1a4b48c2947 (diff) | |
download | lua-3cdd49c94a8feed94853ba3a6adaa556fb34fd8d.tar.gz lua-3cdd49c94a8feed94853ba3a6adaa556fb34fd8d.tar.bz2 lua-3cdd49c94a8feed94853ba3a6adaa556fb34fd8d.zip |
Fixed conversion warnings from clang
Plus some other details. (Option '-Wuninitialized' was removed from
the makefile because it is already enabled by -Wall.)
Diffstat (limited to 'lcode.c')
-rw-r--r-- | lcode.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1439,7 +1439,7 @@ static void finishbinexpval (FuncState *fs, expdesc *e1, expdesc *e2, | |||
1439 | e1->u.info = pc; | 1439 | e1->u.info = pc; |
1440 | e1->k = VRELOC; /* all those operations are relocatable */ | 1440 | e1->k = VRELOC; /* all those operations are relocatable */ |
1441 | luaK_fixline(fs, line); | 1441 | luaK_fixline(fs, line); |
1442 | luaK_codeABCk(fs, mmop, v1, v2, event, flip); /* to call metamethod */ | 1442 | luaK_codeABCk(fs, mmop, v1, v2, cast_int(event), flip); /* metamethod */ |
1443 | luaK_fixline(fs, line); | 1443 | luaK_fixline(fs, line); |
1444 | } | 1444 | } |
1445 | 1445 | ||