Commit ad60f810 authored by mirichi's avatar mirichi

The correct is to compare the MRB_STACK_GROWTH.

parent 5bf32749
...@@ -143,7 +143,7 @@ stack_extend_alloc(mrb_state *mrb, int room) ...@@ -143,7 +143,7 @@ stack_extend_alloc(mrb_state *mrb, int room)
/* Use linear stack growth. /* Use linear stack growth.
It is slightly slower than doubling the stack space, It is slightly slower than doubling the stack space,
but it saves memory on small devices. */ but it saves memory on small devices. */
if (room <= size) if (room <= MRB_STACK_GROWTH)
size += MRB_STACK_GROWTH; size += MRB_STACK_GROWTH;
else else
size += room; size += room;
......
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