From e59e5e90c09f6d67695a0c592a1940585c1cc72e Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 24 Oct 2012 09:49:18 +0000 Subject: objspace.c: enum ruby_value_type * ext/objspace/objspace.c (type2sym, count_objects_size): use enum instead of size_t which may be larger than actual values. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37316 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/objspace/objspace.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/objspace') diff --git a/ext/objspace/objspace.c b/ext/objspace/objspace.c index 41abed90f4..1889f11382 100644 --- a/ext/objspace/objspace.c +++ b/ext/objspace/objspace.c @@ -271,7 +271,7 @@ cos_i(void *vstart, void *vend, size_t stride, void *data) } static VALUE -type2sym(int i) +type2sym(enum ruby_value_type i) { VALUE type; switch (i) { @@ -335,7 +335,7 @@ count_objects_size(int argc, VALUE *argv, VALUE os) { size_t counts[T_MASK+1]; size_t total = 0; - size_t i; + enum ruby_value_type i; VALUE hash; if (rb_scan_args(argc, argv, "01", &hash) == 1) { -- cgit v1.2.3