From cd13326a628cf40bfd25dc286e82e2930a4b5d0e Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 2 Dec 2010 21:45:49 +0000 Subject: [PATCH] * eval.c (ruby_cleanup): fix type. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30061 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;