Commit 88cdb521 authored by Carson McDonald's avatar Carson McDonald

Fixed issue with reference to i in union, should have been sym

parent de67c321
...@@ -299,7 +299,7 @@ localjump_error(mrb_state *mrb, const char *kind) ...@@ -299,7 +299,7 @@ localjump_error(mrb_state *mrb, const char *kind)
#define SET_SYM_VALUE(r,v) {\ #define SET_SYM_VALUE(r,v) {\
(r).tt = MRB_TT_SYMBOL;\ (r).tt = MRB_TT_SYMBOL;\
(r).value.i = (v);\ (r).value.sym = (v);\
} }
#define SET_OBJ_VALUE(r,v) {\ #define SET_OBJ_VALUE(r,v) {\
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment