summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-19 01:44:39 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-19 01:44:39 +0000
commit7d431933b65252109bde705391398126fb5930b9 (patch)
tree6dc7a6538fa72ea50681a4ecb13adcd2373d10c7 /gc.c
parentf14e2a074a34d5bbc4ee6f5ca51562b112e095f1 (diff)
* gc.c (garbage_collect_with_gvl): suppress warnings.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21655 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index d56d2d170a..ab882c50de 100644
--- a/gc.c
+++ b/gc.c
@@ -593,7 +593,7 @@ garbage_collect_with_gvl(rb_objspace_t *objspace)
}
else {
if (ruby_native_thread_p()) {
- return (int)rb_thread_call_with_gvl(gc_with_gvl, (void *)objspace);
+ return (VALUE)rb_thread_call_with_gvl(gc_with_gvl, (void *)objspace);
}
else {
/* no ruby thread */