Skip to content

Commit

Permalink
Remove unnecessary cast.
Browse files Browse the repository at this point in the history
  • Loading branch information
ltratt committed Oct 29, 2024
1 parent 3eb19bd commit 26294d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lvm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1139,7 +1139,7 @@ void luaV_finishOp (lua_State *L) {
trap = luaG_traceexec(L, pc); /* handle hooks */ \
updatebase(ci); /* correct stack */ \
} \
i = (Instruction) yk_promote((uint32_t) *(pc++)); \
i = (Instruction) yk_promote(*(pc++)); \
}
#else
# define vmfetch() { \
Expand Down

0 comments on commit 26294d4

Please sign in to comment.