summaryrefslogtreecommitdiff
path: root/ext/objspace
diff options
context:
space:
mode:
Diffstat (limited to 'ext/objspace')
-rw-r--r--ext/objspace/objspace.c4
1 files changed, 2 insertions, 2 deletions
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) {