From 363cad32618389ea30afa9db3eb6f74b623f232c Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 9 Aug 2008 23:56:17 +0000 Subject: * 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@18463 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- node.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'node.h') 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 -- cgit v1.2.3