summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-02 21:45:49 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-12-02 21:45:49 +0000
commitcd13326a628cf40bfd25dc286e82e2930a4b5d0e (patch)
treeca3561d1560d96eec9c4e3a7bc6434849c9200f0 /eval.c
parente59b9e9e43881a818f21a2a5cf6a702d42142c75 (diff)
* eval.c (ruby_cleanup): fix type.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30061 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index acfe8e93d5..5fe00e13e7 100644
--- a/eval.c
+++ b/eval.c
@@ -129,7 +129,7 @@ ruby_cleanup(volatile int ex)
int nerr;
void rb_threadptr_interrupt(rb_thread_t *th);
void rb_threadptr_check_signal(rb_thread_t *mth);
- int i;
+ long i;
rb_vm_t *vm = GET_VM();
VALUE ary = (VALUE)&vm->at_exit;