summaryrefslogtreecommitdiff
path: root/node.h
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-15 05:40:26 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-15 05:40:26 +0000
commit3c848f79b7eb5ad26b57c4d9edde577cc1ba7026 (patch)
tree493b93e7ae16b3f6d980cca27bf8e7e4769d3d06 /node.h
parent5d3598a1cc5e3668af9935804cf4dafbf84999b0 (diff)
merge revision(s) 18463:
* gc.c (STACK_LEVEL_MAX, ruby_stack_length): returns size_t. [ruby-core:18207] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@21524 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
-rw-r--r--node.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/node.h b/node.h
index 10ab4855c7..ec16febf9e 100644
--- a/node.h
+++ b/node.h
@@ -409,13 +409,13 @@ struct rb_thread {
VALUE result;
- long stk_len;
- long stk_max;
+ size_t stk_len;
+ size_t stk_max;
VALUE *stk_ptr;
VALUE *stk_pos;
#ifdef __ia64
- long bstr_len;
- long bstr_max;
+ size_t bstr_len;
+ size_t bstr_max;
VALUE *bstr_ptr;
VALUE *bstr_pos;
#endif