1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-27 23:53:16 +00:00

Fix broken windows build.

This commit is contained in:
Calvin Rose 2018-03-11 15:42:59 -04:00
parent 2a0dc5f1ad
commit cace92af95

View File

@ -139,7 +139,7 @@ static void *op_lookup[255] = {
#define vm_next() continue
#endif
#define vm_checkgc_next() do { dst_maybe_collect(); vm_next() } while (0)
#define vm_checkgc_next() dst_maybe_collect(); vm_next()
/* Used to extract bits from the opcode that correspond to arguments.
* Pulls out unsigned integers */