From 6f92767afcacbf2c82d1116329360aee7d5b522b Mon Sep 17 00:00:00 2001 From: michal Date: Mon, 9 Sep 2002 10:26:02 +0000 Subject: capa field in RString, and RArray is now LONG (ruby-lang:458) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2828 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ruby.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ruby.h') diff --git a/ruby.h b/ruby.h index 8b5dc179fe..ed18bf0c9e 100644 --- a/ruby.h +++ b/ruby.h @@ -316,7 +316,7 @@ struct RString { long len; char *ptr; union { - int capa; + long capa; VALUE shared; } aux; }; @@ -325,7 +325,7 @@ struct RArray { struct RBasic basic; long len; union { - int capa; + long capa; VALUE shared; } aux; VALUE *ptr; -- cgit v1.2.3