diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-03-07 11:30:07 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-03-07 11:30:07 +0000 |
| commit | 9dcc691b5c1ba4839cc8206482c54f72e7016a8a (patch) | |
| tree | 36fb67739af3db38636025a151ce53486d7296d4 | |
| parent | a24d13b688def84bfe9a375ebe8252809e253d2c (diff) | |
| download | ruby-9dcc691b5c1ba4839cc8206482c54f72e7016a8a.tar.gz ruby-9dcc691b5c1ba4839cc8206482c54f72e7016a8a.tar.xz ruby-9dcc691b5c1ba4839cc8206482c54f72e7016a8a.zip | |
* cont.c (cont_restore_0): fixed typo. [ruby-core:15821]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | cont.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Fri Mar 7 20:30:05 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * cont.c (cont_restore_0): fixed typo. [ruby-core:15821] + Fri Mar 7 19:56:10 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> * lib/mkmf.rb: rdoc added. [ruby-Patches-9762] @@ -323,7 +323,7 @@ cont_restore_0(rb_context_t *cont, VALUE *addr_in_prev_frame) #else if (addr_in_prev_frame > &space[0]) { /* Stack grows downward */ - if (addr_in_prev_frame > cont->saved_thread.machine_stack_src) { + if (addr_in_prev_frame > cont->saved_thread.machine_stack_size) { cont_restore_0(cont, &space[0]); } } |
