Fix an error in refactoring; fix #4682

This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-09-02 08:40:33 +09:00
parent e8de7c6819
commit 5cd52d2d69
+1 -1
View File
@@ -58,7 +58,7 @@ mrb_break_value_get(struct RBreak *brk)
static inline void
mrb_break_value_set(struct RBreak *brk, mrb_value val)
{
brk->val_union = val.value;
brk->value = val.value;
brk->flags &= ~RBREAK_VALUE_TT_MASK;
brk->flags |= val.tt;
}