From 5b79775df2b5903a2c9bdde3a8c78f5925233f7f 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: http://svn.ruby-lang.org/repos/ruby/trunk@2828 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ruby.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ruby.h b/ruby.h index 8b5dc179f..ed18bf0c9 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