summaryrefslogtreecommitdiff
path: root/node.h
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-15 05:33:55 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-15 05:33:55 +0000
commitc0a735026a10b95928860bca6b342e2a2593ef69 (patch)
tree9c3b353bd7302c53217b2895520353cddd89f9cf /node.h
parent8453350cc0e04c3c418ce15f672ff0c417ffab61 (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_6@21522 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 7d3f756e30..b0c3ca6879 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